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 /indirect.cpp |
Initial
Diffstat (limited to 'indirect.cpp')
-rw-r--r-- | indirect.cpp | 11 |
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){} |