#include <ai_exception.h>
Inheritance diagram for NLAIE::CExceptionNotImplemented:
Definition at line 164 of file ai_exception.h.
Public Member Functions | |
CExceptionNotImplemented (const std::string &text) | |
CExceptionNotImplemented (const CExceptionNotImplemented &e) | |
virtual const IException * | clone () const |
virtual const char * | what () const throw () |
virtual | ~CExceptionNotImplemented () throw () |
Protected Attributes | |
std::string | _Reason |
|
Definition at line 132 of file agent_init.cpp. Referenced by clone().
00132 :IException(e) 00133 { 00134 } |
|
Definition at line 136 of file agent_init.cpp.
00136 :IException(name) 00137 { 00138 } |
|
Definition at line 174 of file ai_exception.h.
00175 { 00176 } |
|
Implements NLAIE::IException. Definition at line 140 of file agent_init.cpp. References CExceptionNotImplemented().
00141 { 00142 return new CExceptionNotImplemented(*this); 00143 } |
|
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(). |