Cortex
10.0.0-a4
|
#include <Exception.h>
Public Member Functions | |
Exception (const char *what) | |
Construct with cause of exception. | |
Exception (const std::string &what) | |
virtual const char * | type () const throw () |
const char * | what () const override throw () |
Return cause of exception. | |
Exception & | append (const std::string &s) |
Appends the given string to the cause of the current exception. | |
Exception & | append (const char *s) |
Appends the given string to the cause of the current exception. | |
Exception & | prepend (const std::string &s) |
Prepends the given string to the cause of the current exception. | |
Exception & | prepend (const char *s) |
Prepends the given string to the cause of the current exception. | |
Protected Attributes | |
RefCountedStringPtr | m_what |
The base class from which all IE core library exceptions should derive.