diff options
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){} |