exception.cpp 206 B

123456789
  1. #include "exception.hpp"
  2. using namespace knacki::cd;
  3. ArgumentException::ArgumentException(const std::string &_arg): arg(_arg)
  4. {}
  5. const std::string &ArgumentException::GetWrongArg() const
  6. { return arg; }