#include <GeomExceptions.h>
Public Member Functions | |
BaseGeomException () throw () | |
BaseGeomException (const std::string &message) | |
virtual const char * | what () const throw () |
virtual | ~BaseGeomException () throw () |
Private Attributes | |
std::string | theMessage |
Definition at line 7 of file GeomExceptions.h.
BaseGeomException::BaseGeomException | ( | ) | throw () [inline] |
Definition at line 9 of file GeomExceptions.h.
{}
BaseGeomException::BaseGeomException | ( | const std::string & | message | ) | [inline] |
Definition at line 10 of file GeomExceptions.h.
: theMessage(message) {}
virtual BaseGeomException::~BaseGeomException | ( | ) | throw () [inline, virtual] |
Definition at line 11 of file GeomExceptions.h.
{}
virtual const char* BaseGeomException::what | ( | ) | const throw () [inline, virtual] |
Definition at line 12 of file GeomExceptions.h.
References theMessage.
{ return theMessage.c_str();}
std::string BaseGeomException::theMessage [private] |
Definition at line 14 of file GeomExceptions.h.
Referenced by what().