#include <SignException.h>
SignException is the class that defines all the exception objects that are thrown in The SIGN. It derives from std::exception and is hence compatible with any standard C++ exception.
Public Member Functions | |
| SignException (std::string mod, std::string func, std::string msg) | |
| Constructor. | |
| ~SignException () throw () | |
| Destructor. | |
| virtual const char * | what () const throw () |
| C++ standard information function. | |
| std::string | GetMessage () |
| Get the error message. | |
| std::string | GetModule () |
| Get the module (i.e. class) where the error occurred. | |
| std::string | GetFunction () |
| Get the method where the error occurred. | |
|
||||||||||||||||
|
Constructor.
|
|
|
Destructor.
|
|
|
Get the method where the error occurred.
|
|
|
Get the error message.
|
|
|
Get the module (i.e. class) where the error occurred.
|
|
|
C++ standard information function.
|
1.4.6