#include "exception.hpp" using namespace knacki::cd; ArgumentException::ArgumentException(const std::string &_arg): arg(_arg) {} const std::string &ArgumentException::GetWrongArg() const { return arg; }