diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 21:05:01 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 21:05:01 +0100 |
commit | 979325946b938be7cbe51f8c20c44e457107979f (patch) | |
tree | f6814eb3af59fea8d2f8fe25117a1c88557ae474 /error.cpp | |
parent | 834cb55baadb9dd7c3a4ad096d81259d0868eeb9 (diff) |
Sugar and prelude extension
Diffstat (limited to 'error.cpp')
-rw-r--r-- | error.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -11,3 +11,8 @@ TypeError::TypeError(const string &what_arg) :runtime_error(what_arg){} TypeError::TypeError(const char *what_arg) :runtime_error(what_arg){} + +FormError::FormError(const string &what_arg) + :runtime_error(what_arg){} +FormError::FormError(const char *what_arg) + :runtime_error(what_arg){} |