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

Public Member Functions | |
| NotAllowedError (const char *txt="unknown") | |
| NotAllowedError (const char *txt, const char *file, const char *function, int line) | |
| NotAllowedError (const string &txt) | |
| NotAllowedError (const string &txt, const char *file, const char *function, int line) | |
| virtual void | print () |
|
|
Definition at line 252 of file NSError.h.
00252 :NSError(txt) { 00253 } NotAllowedError(const char *txt, const char *file, |
|
||||||||||||||||||||
|
Definition at line 253 of file NSError.h.
00254 :NSError(txt, 00255 file, 00256 function, 00257 line) { 00258 } |
|
|
Definition at line 259 of file NSError.h.
00259 :NSError(txt) { 00260 } |
|
||||||||||||||||||||
|
Definition at line 261 of file NSError.h.
00262 :NSError(txt, file, 00263 function, 00264 line) { 00265 } |
|
|
Reimplemented from NSError. Definition at line 267 of file NSError.h. References slog.
|
1.3.6-20040222