#include <KernelExceptions.h>
Inheritance diagram for vrj::ManagerException:

Public Member Functions | |
| ManagerException (const std::string &msg) throw () | |
| virtual | ~ManagerException () throw () |
| virtual const char * | what () const throw () |
Protected Attributes | |
| std::string | mMessage |
Definition at line 49 of file KernelExceptions.h.
| vrj::ManagerException::ManagerException | ( | const std::string & | msg | ) | throw () |
Definition at line 35 of file KernelExceptions.cpp.
00037 : std::exception() 00038 , mMessage(msg) 00039 { 00040 /* Do nothing. */ ; 00041 }
| vrj::ManagerException::~ManagerException | ( | ) | throw () [virtual] |
| const char * vrj::ManagerException::what | ( | ) | const throw () [virtual] |
Definition at line 48 of file KernelExceptions.cpp.
References mMessage.
Referenced by vrj::Kernel::startDrawManager().
00049 { 00050 return mMessage.c_str(); 00051 }
std::string vrj::ManagerException::mMessage [protected] |
1.5.1