#include <Error.h>
Inheritance diagram for IOError:

Public Member Functions | |
| IOError (const char *txt="unknown", int errnbr=-1) | |
| IOError (const char *txt, int errnbr, const char *file, const char *function, int line) | |
| IOError (const string &txt, int errnbr=-1) | |
| IOError (const string &txt, int errnbr, const char *file, const char *function, int line) | |
| virtual void | print () |
Definition at line 110 of file Error.h.
|
||||||||||||
|
Definition at line 112 of file Error.h.
00113 :SystemError(txt, errnbr) { 00114 } IOError(const char *txt, int errnbr, const char *file, |
|
||||||||||||||||||||||||
|
Definition at line 114 of file Error.h.
00115 :SystemError(txt, errnbr, 00116 file, 00117 function, 00118 line) { 00119 } |
|
||||||||||||
|
Definition at line 120 of file Error.h.
00121 :SystemError(txt, errnbr) { 00122 } |
|
||||||||||||||||||||||||
|
Definition at line 123 of file Error.h.
00124 :SystemError(txt, errnbr, 00125 file, function, 00126 line) { 00127 } |
|
|
Reimplemented from SystemError. Definition at line 129 of file Error.h. References slog.
|
1.3.6-20040222