#include <ai_exception.h>
Inheritance diagram for NLAIE::CExceptionUnReference:
Definition at line 182 of file ai_exception.h.
Public Member Functions | |
CExceptionUnReference (char *text) | |
CExceptionUnReference (const std::string &text) | |
CExceptionUnReference (const CExceptionUnReference &e) | |
virtual const IException * | clone () const |
virtual const char * | what () const throw () |
virtual | ~CExceptionUnReference () throw () |
Protected Attributes | |
std::string | _Reason |
|
Definition at line 146 of file agent_init.cpp. Referenced by clone().
00146 :IException(e) 00147 { 00148 } |
|
Definition at line 150 of file agent_init.cpp.
00150 :IException(text) 00151 { 00152 } |
|
Definition at line 154 of file agent_init.cpp. References const.
00154 :IException((const char *)text) 00155 { 00156 } |
|
Definition at line 192 of file ai_exception.h.
00193 { 00194 } |
|
Implements NLAIE::IException. Definition at line 158 of file agent_init.cpp. References CExceptionUnReference().
00159 { 00160 return new CExceptionUnReference(*this); 00161 } |
|
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(). |