diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 11:27:07 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 11:27:07 +0100 |
commit | 3b390967e7c2ee4ac6d1a67c77f40ed43005e012 (patch) | |
tree | 4be72c3ed32277329c472c1dc72793577ea29195 /error.h |
Initial
Diffstat (limited to 'error.h')
-rw-r--r-- | error.h | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +#pragma once + +#include <stdexcept> +#include <string> + +using namespace std; + + +class NameError : public runtime_error{ +public: + NameError(const string &what_arg); + NameError(const char *what_arg); +}; + +class TypeError : public runtime_error{ +public: + TypeError(const string &what_arg); + TypeError(const char *what_arg); +}; |