#include <Exception.h>
Inheritance diagram for Sct::Exception:
Public Member Functions | |
Exception (const string &msg, const string &file, int line) throw () | |
Creates an Exception with message msg and no cause. | |
Exception (Throwable &cause, const string &file, int line) throw () | |
Creates an Exception with a cause. | |
Exception (const string &msg, Throwable &cause, const string &file, int line) throw () | |
Creates an Exception with a message and a cause. |
Definition at line 153 of file Exception.h.
|
Creates an Exception with message msg and no cause.
Definition at line 81 of file Exception.cpp. |
|
Creates an Exception with a cause. Useful for simply wrapping exceptions. Definition at line 85 of file Exception.cpp. |
|
Creates an Exception with a message and a cause.
Definition at line 89 of file Exception.cpp. |