| 1234567891011121314151617 |
- #pragma once
- #include <exception>
- #include <string>
- namespace knacki::cd {
- class ArgumentException: public std::exception
- {
- public:
- ArgumentException(const std::string &arg);
- const std::string &GetWrongArg() const;
- protected:
- const std::string arg;
- };
- }
|