summaryrefslogtreecommitdiff
path: root/indirect.cpp
blob: 75d35be981cbd8081d46e10588f174c90f06d35c (plain)
1
2
3
4
5
6
7
8
9
10
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){}