summaryrefslogtreecommitdiff
path: root/libmysqlpp/error.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-23 23:15:18 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-23 23:15:18 +0000
commitf268aec98176049136bceb2741f3615841e5c516 (patch)
tree79b980073c32aa1bb08988d06151d194b4ac104c /libmysqlpp/error.h
parentUse a b2 lib for mysql (diff)
downloadlibdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.tar.bz2
libdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.tar.xz
libdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.zip
MySQL files prefixed with my-
Diffstat (limited to 'libmysqlpp/error.h')
-rw-r--r--libmysqlpp/error.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/libmysqlpp/error.h b/libmysqlpp/error.h
deleted file mode 100644
index b4f93b2..0000000
--- a/libmysqlpp/error.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#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
-