#include <vrj/Display/DisplayExceptions.h>
Public Member Functions | |
| InvalidSurfaceException (const std::string &msg) throw () | |
| virtual | ~InvalidSurfaceException () throw () |
| virtual const char * | what () const throw () |
Protected Attributes | |
| std::string | mMessage |
Definition at line 52 of file DisplayExceptions.h.
| vrj::InvalidSurfaceException::InvalidSurfaceException | ( | const std::string & | msg | ) | throw () |
Definition at line 35 of file DisplayExceptions.cpp.
00037 : std::exception() 00038 , mMessage(msg) 00039 { 00040 /* Do nothing. */ ; 00041 }
| vrj::InvalidSurfaceException::~InvalidSurfaceException | ( | ) | throw () [virtual] |
| const char * vrj::InvalidSurfaceException::what | ( | ) | const throw () [virtual] |
Definition at line 48 of file DisplayExceptions.cpp.
References mMessage.
Referenced by vrj::SurfaceViewport::config().
00049 { 00050 return mMessage.c_str(); 00051 }
std::string vrj::InvalidSurfaceException::mMessage [protected] |
1.5.1