#include <casexception.h>
Inheritance diagram for CASException:

Public Member Functions | |
| CASException () throw () | |
| Dummy. | |
| const char * | what () const throw () |
Returns the content of msg. | |
| ~CASException () throw () | |
| Dummy. | |
Protected Attributes | |
| std::string | msg |
| Attribute holding the message of the exception. | |
std::string.
It is derived from std::exception. Therefore, calling CASException::what() reveals the reason for the exception.
Definition at line 70 of file casexception.h.
| CASException::CASException | ( | ) | throw () [inline] |
Dummy constructor for completeness.
Definition at line 86 of file casexception.h.
| CASException::~CASException | ( | ) | throw () [inline] |
Dummy destructor for completeness
Definition at line 104 of file casexception.h.
| const char* CASException::what | ( | ) | const throw () [inline] |
Returns the content of msg as C-String. The other class derrived from CASException do not implement this method, rather than derive it.
{char *} holding the message. Definition at line 97 of file casexception.h.
std::string CASException::msg [protected] |
This string can be retrieved by calling CASException::what().
Definition at line 78 of file casexception.h.
1.4.7