summaryrefslogtreecommitdiff
path: root/libpqpp/error.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libpqpp/error.cpp')
-rw-r--r--libpqpp/error.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/libpqpp/error.cpp b/libpqpp/error.cpp
deleted file mode 100644
index f2bebd6..0000000
--- a/libpqpp/error.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-#include "error.h"
-#include <string.h>
-
-PQ::Error::Error() :
- msg(NULL)
-{
-}
-
-PQ::Error::Error(const PQ::Error & e) :
- msg(e.msg ? strdup(e.msg) : NULL)
-{
-}
-
-PQ::Error::Error(const char * e) :
- msg(e ? strdup(e) : NULL)
-{
-}
-
-PQ::Error::~Error() throw()
-{
- free(msg);
-}
-
-const char *
-PQ::Error::what() const throw()
-{
- return msg ? msg : "No message";
-}
-
-PQ::ConnectionError::ConnectionError(const PGconn * conn) :
- PQ::Error(PQerrorMessage(conn))
-{
-}
-