diff options
Diffstat (limited to 'libmysqlpp/my-error.h')
-rw-r--r-- | libmysqlpp/my-error.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libmysqlpp/my-error.h b/libmysqlpp/my-error.h new file mode 100644 index 0000000..b4f93b2 --- /dev/null +++ b/libmysqlpp/my-error.h @@ -0,0 +1,24 @@ +#ifndef MY_ERROR_H +#define MY_ERROR_H + +#include <error.h> + +namespace MySQL { + class Error : public DB::Error { + public: + Error(); + Error(const Error &); + Error(const char *); + ~Error() throw(); + + const char * what() const throw(); + + private: + char * msg; + }; + class ConnectionError : public Error, public virtual DB::ConnectionError { + }; +} + +#endif + |