#include <Error.h>
Inheritance diagram for MySQLaux::Error
Public Methods | |
Error (unsigned int errno, char *error) | |
Constructor. More... | |
unsigned int | errno () const |
Number of most recent error. More... | |
string const | error () const |
Desciption of most recent error. More... | |
string | asString () const throw () |
Get description of exception as string. More... | |
Protected Attributes | |
unsigned int | _errno |
string | _error |
Definition at line 35 of file Error.h.
|
Constructor.
|
|
Get description of exception as string.
Reimplemented from MySQLaux::Exception. Definition at line 61 of file Error.h. 00061 { return _error; } 00062 |
|
Number of most recent error.
Definition at line 55 of file Error.h. 00055 { return _errno; } 00056 |
|
Desciption of most recent error.
Definition at line 57 of file Error.h. 00057 { return _error; } 00058 |
|
|
|
|