|
bpp-core
2.1.0
|
#include <Bpp/Exceptions.h>
Inheritance diagram for bpp::Exception:
Collaboration diagram for bpp::Exception:Public Member Functions | |
| Exception (const char *text) | |
| Build a new Exception. | |
| Exception (const std::string &text) | |
| Build a new Exception. | |
| virtual | ~Exception () throw () |
| const char * | what () const throw () |
| Method to get the message of the exception (STL method redefinition). | |
Protected Attributes | |
| std::string | message_ |
Exception base class.
Overload exception constructor (to control the exceptions mechanism).
Definition at line 56 of file Exceptions.h.
| bpp::Exception::Exception | ( | const char * | text | ) | [inline] |
Build a new Exception.
| text | A message to be passed to the exception hierarchy. |
Definition at line 68 of file Exceptions.h.
| bpp::Exception::Exception | ( | const std::string & | text | ) | [inline] |
Build a new Exception.
| text | A message to be passed to the exception hierarchy. |
Definition at line 75 of file Exceptions.h.
| virtual bpp::Exception::~Exception | ( | ) | throw () [inline, virtual] |
Definition at line 77 of file Exceptions.h.
| const char* bpp::Exception::what | ( | ) | const throw () [inline] |
Method to get the message of the exception (STL method redefinition).
Definition at line 86 of file Exceptions.h.
References message_.
std::string bpp::Exception::message_ [protected] |
Definition at line 60 of file Exceptions.h.
Referenced by what().