| 112 | public: |
| 113 | InvalidArgumentException(const char *what) : Exception(what) {}; |
| 114 | InvalidArgumentException(const std::string &what) : Exception(what) {}; |
| 115 | |
| 116 | const char *type() const throw() override { return "Invalid Argument"; } |
| 117 | }; |
no outgoing calls
no test coverage detected