summaryrefslogtreecommitdiff
path: root/src/exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/exceptions.h')
-rw-r--r--src/exceptions.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h
index 4f18f70d9..67a2d0df6 100644
--- a/src/exceptions.h
+++ b/src/exceptions.h
@@ -65,6 +65,11 @@ public:
FileNotGoodException(const std::string &s): BaseException(s) {}
};
+class DatabaseException : public BaseException {
+public:
+ DatabaseException(const std::string &s): BaseException(s) {}
+};
+
class SerializationError : public BaseException {
public:
SerializationError(const std::string &s): BaseException(s) {}