#include <BeliefException.h>
Public Member Functions | |
BeliefException (const std::string &e) | |
this is the principal constructor to be called with an error message e | |
std::string | getMessage () |
accessor method for getting the error message | |
~BeliefException () throw () | |
destructor | |
Private Member Functions | |
BeliefException () | |
to prevent the call of a default constructor | |
Private Attributes | |
std::string | err |
this stores the error message internally |
Definition at line 16 of file BeliefException.h.
pomdp::BeliefException::BeliefException | ( | ) | [private] |
to prevent the call of a default constructor
pomdp::BeliefException::BeliefException | ( | const std::string & | e | ) |
this is the principal constructor to be called with an error message e
e | error message |
Definition at line 8 of file BeliefException.cpp.
pomdp::BeliefException::~BeliefException | ( | ) | throw () |
destructor
Definition at line 16 of file BeliefException.cpp.
std::string pomdp::BeliefException::getMessage | ( | ) |
accessor method for getting the error message
Definition at line 12 of file BeliefException.cpp.
std::string pomdp::BeliefException::err [private] |
this stores the error message internally
Definition at line 21 of file BeliefException.h.