Main Page   Modules   Class Hierarchy   Compound List   File List   Compound Members  

errmsg.h

00001 //==========================================================================
00002 //   ERRMSG.H - header for
00003 //                             OMNeT++
00004 //            Discrete System Simulation in C++
00005 //
00006 //
00007 //  Error code constants
00008 //
00009 //==========================================================================
00010 
00011 /*--------------------------------------------------------------*
00012   Copyright (C) 1992-2003 Andras Varga
00013 
00014   This file is distributed WITHOUT ANY WARRANTY. See the file
00015   `license' for details on this and other legal matters.
00016 *--------------------------------------------------------------*/
00017 
00018 #ifndef __ERRMSG_H
00019 #define __ERRMSG_H
00020 
00021 
00022 //
00023 // Error codes
00024 //
00025 enum {
00026         eOK          =  0,
00027         eBADCAST     =  1,
00028         eCIRCREF     =  2,
00029         eNUMARGS     =  3,
00030         eNOMODIF     =  4,
00031         eUISTARTUP   =  5,
00032         eSTOPSIMRCVD =  6,
00033         eNOMOD       =  7,
00034         eNOGATE      =  8,
00035         eINGATE      =  9,
00036         eNOPARAM     = 10,
00037         eNOMEM       = 11,
00038         eINCAUSAL    = 12,
00039         eMODFIN      = 13,
00040         eBADTRANSF   = 14,
00041         eBADINIT     = 15,
00042         eUNEXP       = 16,
00043         eNORECV      = 17,
00044         eSTKLOW      = 18,
00045         eENDEDOK     = 19,
00046         eMODINI      = 20,
00047         eNULLPTR     = 21,
00048         eNULLREF     = 22,
00049         eOUTVECT     = 23,
00050         ePARCHF      = 24,
00051         eNEGTIME     = 25,
00052         eMATH        = 26,
00053         eFPERR       = 27,
00054         eNEGTOUT     = 28,
00055         eNODEL       = 29,
00056         eCANCEL      = 30,
00057         eNONET       = 31,
00058         eBADEXP      = 32,
00059         eFINISH      = 33,
00060         eENDSIM      = 34,
00061         eREALTIME    = 35,
00062         eSIMTIME     = 36,
00063         eCANTDUP     = 37,
00064         eINFLOOP     = 38,
00065         eSTATECHG    = 39,
00066         eCANTCOPY    = 40,
00067         eBADGATE     = 41,
00068         eNOTCONN     = 42,
00069         eBADKEY      = 43,
00070         eNOMODDEF    = 44,
00071         eNOCHANDEF   = 45,
00072         eNOSUCHNET   = 46,
00073         ePVM         = 47,
00074         eBADARGS     = 48,
00075         eBACKSCHED   = 49,
00076         eOUTGATE     = 50,
00077         eCHERROR     = 51, //NL
00078         eCHDELAY     = 52, //NL
00079         eARRAY       = 53, //NL
00080         eCUSTOM      = 54,
00081         eNOMEM2      = 55,
00082         eUSER        = 56
00083 };
00084 
00085 extern char *emsg[];
00086 
00087 #endif

Generated at Mon Jun 16 23:37:31 2003 for OMNeT++ by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001