#include <NSError.h>
Inheritance diagram for UsageError:

Public Member Functions | |
| UsageError (const char *txt="unknown") | |
| UsageError (const char *txt, const char *file, const char *function, int line) | |
| UsageError (const string &txt) | |
| UsageError (const string &txt, const char *file, const char *function, int line) | |
| virtual void | print () |
Definition at line 282 of file NSError.h.
|
|
Definition at line 284 of file NSError.h.
00284 :NSError(txt) { 00285 } UsageError(const char *txt, const char *file, |
|
||||||||||||||||||||
|
Definition at line 285 of file NSError.h.
00286 :NSError(txt, file, 00287 function, 00288 line) { 00289 } |
|
|
Definition at line 290 of file NSError.h.
00290 :NSError(txt) { 00291 } |
|
||||||||||||||||||||
|
Definition at line 292 of file NSError.h.
00293 :NSError(txt, file, 00294 function, 00295 line) { 00296 } |
|
|
Reimplemented from NSError. Definition at line 298 of file NSError.h. References slog.
|
1.3.6-20040222