summaryrefslogtreecommitdiff
path: root/indirect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indirect.cpp')
-rw-r--r--indirect.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/indirect.cpp b/indirect.cpp
new file mode 100644
index 0000000..75d35be
--- /dev/null
+++ b/indirect.cpp
@@ -0,0 +1,11 @@
+#include "indirect.h"
+
+using namespace std;
+
+
+NullIndirectError::NullIndirectError()
+ :runtime_error("NullIndirectError()"){}
+NullIndirectError::NullIndirectError(const string &what_arg)
+ :runtime_error(what_arg){}
+NullIndirectError::NullIndirectError(const char *what_arg)
+ :runtime_error(what_arg){}