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 6fb97f3ed..703d6c1a5 100644
--- a/src/exceptions.h
+++ b/src/exceptions.h
@@ -85,6 +85,11 @@ public:
SettingNotFoundException(std::string s): BaseException(s) {}
};
+class NumericException : public BaseException {
+public:
+ NumericException(std::string s): BaseException(s) {}
+};
+
class InvalidFilenameException : public BaseException {
public:
InvalidFilenameException(std::string s): BaseException(s) {}