#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){}