#include <Exception.h>
Inheritance diagram for Sct::Error:
Public Member Functions | |
Error (const string &msg, const string &file, int line) throw () | |
Creates an Exception with message msg and no cause. | |
Error (Throwable &cause, const string &file, int line) throw () | |
Creates an Exception with a cause. | |
Error (const string &msg, Throwable &cause, const string &file, int line) throw () | |
Creates an Exception with a message and a cause. | |
Protected Member Functions | |
Error () throw () |
Should probably not be caught except perhaps at top level.
Definition at line 180 of file Exception.h.
|
Creates an Exception with message msg and no cause.
Definition at line 100 of file Exception.cpp. |
|
Creates an Exception with a cause. Useful for simply wrapping exceptions. Definition at line 104 of file Exception.cpp. |
|
Creates an Exception with a message and a cause.
Definition at line 108 of file Exception.cpp. |