#include <SIG_Exception.h>
Inheritance diagram for SIGEL_Tools::SIG_Exception:
Public Methods | |
SIG_Exception (QString fileName, int line, QString message) | |
This constructor should be used when throwing a new Exception. More... | |
SIG_Exception (QString fileName, int line, QString message, SIG_Exception const& prevException) | |
This constructor should be used when throwing an exception in a catch-block. More... | |
QString | getMessage () const |
Protected Attributes | |
QString | message |
The QString containing all textual information about this exception. More... |
Definition at line 13 of file SIG_Exception.h.
|
This constructor should be used when throwing a new Exception.
Definition at line 3 of file SIG_Exception.cpp. |
|
This constructor should be used when throwing an exception in a catch-block. The resulting exception contains the message from prevException, the sort-name of exception and the newly supplied message. It enables to add a (more detailed) message to the ones already contained in the catched exception. The created exception containing the accumulated messages can be thrown again.
Definition at line 11 of file SIG_Exception.cpp. |
|
Definition at line 22 of file SIG_Exception.cpp. |
|
The QString containing all textual information about this exception.
Definition at line 63 of file SIG_Exception.h. |