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

Public Member Functions | |
| AssertionError (const char *txt) | |
| AssertionError (const char *txt, const char *file, const char *function, int line) | |
| AssertionError (const string &txt) | |
| AssertionError (const string &txt, const char *file, const char *function, int line) | |
| virtual void | print () |
Definition at line 147 of file Error.h.
|
|
Definition at line 149 of file Error.h.
00149 :Error(txt) { 00150 } AssertionError(const char *txt, const char *file, |
|
||||||||||||||||||||
|
Definition at line 150 of file Error.h.
00151 :Error(txt, file, 00152 function, 00153 line) { 00154 } |
|
|
Definition at line 155 of file Error.h.
00155 :Error(txt) { 00156 } |
|
||||||||||||||||||||
|
Definition at line 157 of file Error.h.
00158 :Error(txt, file, 00159 function, 00160 line) { 00161 } |
|
|
Reimplemented from Error. Definition at line 163 of file Error.h. References slog.
|
1.3.6-20040222