summaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-11-20 21:05:01 +0100
committertomsmeding <tom.smeding@gmail.com>2016-11-20 21:05:01 +0100
commit979325946b938be7cbe51f8c20c44e457107979f (patch)
treef6814eb3af59fea8d2f8fe25117a1c88557ae474 /error.h
parent834cb55baadb9dd7c3a4ad096d81259d0868eeb9 (diff)
Sugar and prelude extension
Diffstat (limited to 'error.h')
-rw-r--r--error.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/error.h b/error.h
index 02aafec..e57267c 100644
--- a/error.h
+++ b/error.h
@@ -17,3 +17,9 @@ public:
TypeError(const string &what_arg);
TypeError(const char *what_arg);
};
+
+class FormError : public runtime_error{
+public:
+ FormError(const string &what_arg);
+ FormError(const char *what_arg);
+};