Go to the source code of this file.
Compounds | |
| struct | XMillException |
Functions | |
| void | Error (char *str, int len) |
| void | Error (char *str) |
| void | ErrorCont (char *str, int len) |
| void | ErrorCont (char *str) |
| void | PrintErrorMsg () |
| void | Exit () |
| void | ExitNoMem () |
| void | ExitCorruptFile () |
|
|
Definition at line 72 of file Error.cpp. Referenced by ExitCorruptFile(), FindEndOfParamString(), Output::GetDataPtr(), HandleBinOp(), HandleCloseParenc(), HandleUnaryOp(), InterpretOptionString(), ParseOptionFile(), ParseString(), VRegExpr::ParseVRegExpr(), MemStreamer::ReleaseByteBlock(), XMLOutput::endAttribute(), XMLOutput::endElement(), XMLOutput::startAttribute(), and XMLOutput::startElement().
00074 {
00075 Error(str,strlen(str));
00076 }
|
|
||||||||||||
|
|
|
|
Definition at line 91 of file Error.cpp. Referenced by FindEndOfParamString(), and ParseString().
00093 {
00094 ErrorCont(str,strlen(str));
00095 }
|
|
||||||||||||
|
|
|
|
Definition at line 113 of file Error.cpp. 00114 {
00115 // PrintErrorMsg();
00116 throw &e;
00117 }
|
|
|
|
|
|
Definition at line 49 of file Error.hpp. Referenced by Output::CreateFile(), SmallBlockUncompressor::Init(), and LabelDict::Init().
|
|
|
Definition at line 97 of file Error.cpp. 00099 {
00100 while(curerrline!=NULL)
00101 {
00102 printf("%s\n",(char *)(curerrline+1));
00103 curerrline=curerrline->next;
00104 }
00105
00106 curptr=errmsg;
00107 msgptr=errmsg+ERRMSG_MAXLEN-1;
00108 }
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001