#include <ai_exception.h>
Inheritance diagram for NLAIE::IException:
Definition at line 49 of file ai_exception.h.
Public Member Functions | |
virtual const IException * | clone () const=0 |
IException (const std::string &reason) | |
IException (const IException &e) | |
IException () | |
virtual const char * | what () const throw () |
virtual | ~IException () throw () |
Protected Attributes | |
std::string | _Reason |
|
Definition at line 54 of file ai_exception.h.
00055 { 00056 } |
|
Definition at line 58 of file ai_exception.h.
00058 :NLMISC::Exception(e.what()) 00059 { 00060 } |
|
Definition at line 61 of file ai_exception.h.
00061 : NLMISC::Exception(reason) 00062 { 00063 } |
|
Definition at line 65 of file ai_exception.h.
00066 { 00067 } |
|
|
Reimplemented in NL3D::EBadBind. Definition at line 672 of file common.cpp.
00673 { 00674 return _Reason.c_str(); 00675 } |
|
Definition at line 244 of file common.h. Referenced by NLMISC::Exception::Exception(). |