summaryrefslogtreecommitdiff
path: root/libmysqlpp/error.cpp
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.cpp
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.cpp')
-rw-r--r--libmysqlpp/error.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/libmysqlpp/error.cpp b/libmysqlpp/error.cpp
deleted file mode 100644
index 2b9b418..0000000
--- a/libmysqlpp/error.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#include "error.h"
-#include <string.h>
-
-MySQL::Error::Error() :
- msg(NULL)
-{
-}
-
-MySQL::Error::Error(const MySQL::Error & e) :
- msg(e.msg ? strdup(e.msg) : NULL)
-{
-}
-
-MySQL::Error::Error(const char * e) :
- msg(e ? strdup(e) : NULL)
-{
-}
-
-MySQL::Error::~Error() throw()
-{
- free(msg);
-}
-
-const char *
-MySQL::Error::what() const throw()
-{
- return msg ? msg : "No message";
-}
-