00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include "allinc.h"
00029 #include "aiomsg/msg_c.h"
00030 #include "base/except.h"
00031
00032 BEGIN_TERIMBER_NAMESPACE
00033 #pragma pack(4)
00034
00035
00036 exception_item msgMsgs[] =
00037 {
00038 { MSG_RESULT_OK, "Action succeeded" },
00039 { MSG_RESULT_UNKNOWN_ERROR, "Unspecified error occured" },
00040 { MSG_RESULT_NOTMEMORY, "Not enough memory" },
00041 { MSG_RESULT_TIMEOUT, "Timeout occured" },
00042 { MSG_RESULT_UNKNOWN_DESTINATION, "Unknown destination" },
00043 { MSG_RESULT_CONNECTION_BROKEN, "Connection broken" },
00044 { MSG_RESULT_ACCESS_DENIED, "Access denied" },
00045 { MSG_RESULT_UNKNOWN_MSGID, "Unknown message ident %d" },
00046 { MSG_RESULT_UNKNOWN_FILE, "Unknown file %s" },
00047 { MSG_RESULT_INVALID_MSGFORMAT, "Invalid message format" },
00048 { MSG_RESULT_INVALID_SESSION, "Invalid session ident" },
00049 { 0, 0 }
00050 };
00051
00052
00053 exception_table msgMsgTable(msgMsgs);
00054
00055 #pragma pack()
00056 END_TERIMBER_NAMESPACE