Base class for ATS exception. More...
#include <TsException.h>
Public Member Functions | |
Exception () | |
Default constructor. | |
Exception (const char *text) | |
Construct with alternate text. | |
Static Public Attributes | |
static char const *const | DEFAULT_TEXT |
Protected Attributes | |
char const * | m_text |
Base class for ATS exception.
Clients should subclass as appropriate. This is intended to carry pre-allocated text along so that it can be thrown without any addditional memory allocation.
Definition at line 40 of file TsException.h.
Exception::Exception | ( | ) | [inline] |
Default constructor.
Definition at line 57 of file TsException.h.
Exception::Exception | ( | const char * | text | ) | [inline] |
Construct with alternate text.
text | Alternate text for exception. |
Definition at line 58 of file TsException.h.
char const* const ts::Exception::DEFAULT_TEXT [static] |
Definition at line 49 of file TsException.h.
char const* ts::Exception::m_text [protected] |
Definition at line 51 of file TsException.h.