#include <MissingFeature.h>
Inheritance diagram for MySQLaux::MissingFeature

Public Methods | |
| MissingFeature (string const &description) | |
| Constructor. More... | |
| string | asString () const throw () |
| Get description of exception as string. More... | |
| const char* | what () const throw () |
| Get description of exception as character pointer. More... | |
To be thrown when code needs to be added.
Definition at line 35 of file MissingFeature.h.
|
|
Constructor.
Definition at line 45 of file MissingFeature.h. 00045 : _description(description) {}
00046 |
|
|
Get description of exception as string.
Reimplemented from MySQLaux::Exception. Definition at line 50 of file MissingFeature.h. Referenced by what(). 00051 {
00052 string ret("Missing feature to be added ASAP: ");
00053 ret += _description;
00054 return ret;
00055 |
|
|
Get description of exception as character pointer.
Reimplemented from MySQLaux::Exception. Definition at line 60 of file MissingFeature.h. 00061 {
00062 return asString().c_str();
00063 |
1.2.5 written by Dimitri van Heesch,
© 1997-2001