summaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-11-20 11:27:07 +0100
committertomsmeding <tom.smeding@gmail.com>2016-11-20 11:27:07 +0100
commit3b390967e7c2ee4ac6d1a67c77f40ed43005e012 (patch)
tree4be72c3ed32277329c472c1dc72793577ea29195 /error.h
Initial
Diffstat (limited to 'error.h')
-rw-r--r--error.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/error.h b/error.h
new file mode 100644
index 0000000..02aafec
--- /dev/null
+++ b/error.h
@@ -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);
+};