| 92 | public: |
| 93 | IOException(const char *what) : Exception(what) {}; |
| 94 | IOException(const std::string &what) : Exception(what) {}; |
| 95 | |
| 96 | const char *type() const throw() override { return "I/O Exception"; } |
| 97 | }; |
no outgoing calls
no test coverage detected