Inheritance diagram for Exception:

Defines throwable exception.
Public Member Functions | |
| Exception () | |
| Default constructor Creates exception with empty message. | |
| Exception (const String &msg) | |
| Creates exception with string message. | |
| Exception (const Exception &e) | |
| Creates exception with included exception information. | |
| virtual | ~Exception () |
| Default destructor. | |
| virtual const String * | getMessage () const |
| Returns exception message. | |
Protected Attributes | |
| StringBuffer * | message |
| Internal message container. | |