#include <Exception.h>
Inheritance diagram for MySQLaux::Exception
Public Methods | |
virtual string | asString () const=0 throw () |
Get description of exception as string. More... | |
const char* | what () const throw () |
Get description of exception as character pointer. More... | |
Protected Methods | |
Exception () | |
virtual | ~Exception () |
Definition at line 34 of file Exception.h.
|
Definition at line 37 of file Exception.h. 00037 {} 00038 |
|
Definition at line 38 of file Exception.h. 00038 {} 00039 |
|
Get description of exception as string.
Reimplemented in MySQLaux::InvalidDate, MySQLaux::Error, and MySQLaux::MissingFeature. Referenced by what(). |
|
Get description of exception as character pointer.
Reimplemented in MySQLaux::MissingFeature. Definition at line 48 of file Exception.h. 00049 { 00050 return asString().c_str(); 00051 |