Provides a base exception class from which to derive other Sick exceptions. More...
#include <SickException.hh>
Public Member Functions | |
SickException (const std::string general_str) | |
A standard constructor. | |
SickException (const std::string general_str, const std::string detailed_str) | |
A standard constructor. | |
virtual const char * | what () const throw () |
From the standard exception library. | |
~SickException () throw () | |
A destructor. | |
Private Attributes | |
std::string | _detailed_msg |
Provides a base exception class from which to derive other Sick exceptions.
Definition at line 30 of file SickException.hh.
SickToolbox::SickException::SickException | ( | const std::string | general_str | ) | [inline] |
A standard constructor.
general_str | A descriptive "general" string |
Definition at line 38 of file SickException.hh.
SickToolbox::SickException::SickException | ( | const std::string | general_str, |
const std::string | detailed_str | ||
) | [inline] |
A standard constructor.
general_str | A descriptive "general" string |
detailed_str | A more detailed description |
Definition at line 47 of file SickException.hh.
SickToolbox::SickException::~SickException | ( | ) | throw () [inline] |
A destructor.
Definition at line 61 of file SickException.hh.
virtual const char* SickToolbox::SickException::what | ( | ) | const throw () [inline, virtual] |
From the standard exception library.
Definition at line 54 of file SickException.hh.
std::string SickToolbox::SickException::_detailed_msg [private] |
The string identifier
Definition at line 66 of file SickException.hh.