From f268aec98176049136bceb2741f3615841e5c516 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 23 Dec 2015 23:15:18 +0000 Subject: MySQL files prefixed with my- --- libmysqlpp/my-error.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libmysqlpp/my-error.cpp (limited to 'libmysqlpp/my-error.cpp') diff --git a/libmysqlpp/my-error.cpp b/libmysqlpp/my-error.cpp new file mode 100644 index 0000000..c35a3a1 --- /dev/null +++ b/libmysqlpp/my-error.cpp @@ -0,0 +1,29 @@ +#include "my-error.h" +#include + +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"; +} + -- cgit v1.2.3