vrj::ManagerException Class Reference

General exception type for managers held by vrj::Kernel. More...

#include <KernelExceptions.h>

Inheritance diagram for vrj::ManagerException:

Inheritance graph
[legend]
List of all members.

Public Member Functions

 ManagerException (const std::string &msg) throw ()
virtual ~ManagerException () throw ()
virtual const char * what () const throw ()

Protected Attributes

std::string mMessage

Detailed Description

General exception type for managers held by vrj::Kernel.

Definition at line 49 of file KernelExceptions.h.


Constructor & Destructor Documentation

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]

Definition at line 43 of file KernelExceptions.cpp.

00044 {
00045    /* Do nothing. */ ;
00046 }


Member Function Documentation

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 }


Member Data Documentation

std::string vrj::ManagerException::mMessage [protected]

Definition at line 59 of file KernelExceptions.h.

Referenced by what().


The documentation for this class was generated from the following files:
Generated on Thu Jan 4 10:58:30 2007 for VR Juggler by  doxygen 1.5.1