

Definition at line 11 of file BaseException.h.
Public Member Functions | |
| BaseException (const ExInfo &exinfo) | |
| Mother of all exception. | |
| virtual | ~BaseException () throw () |
| virtual const char * | what () const throw () |
| Return text info. | |
| virtual const ExInfo & | info () const throw () |
| Return detail info. | |
|
|
Mother of all exception.
Definition at line 19 of file BaseException.cpp. 00020 : std::exception(), m_info(exinfo)
00021 {
00022 /* empty */
00023 }
|
|
|
Definition at line 16 of file BaseException.h. 00016 {}
|
|
|
Return detail info.
Definition at line 40 of file BaseException.cpp. 00041 {
00042 return m_info;
00043 }
|
|
|
Return text info.
Definition at line 30 of file BaseException.cpp. 00031 {
00032 return m_info.what();
00033 }
|
1.4.2