| 102 | public: |
| 103 | FileNotFoundIOException(const char *what) : IOException(what) {}; |
| 104 | FileNotFoundIOException(const std::string &what) : IOException(what) {}; |
| 105 | |
| 106 | const char *type() const throw() override { return "File Not Found"; } |
| 107 | }; |
no outgoing calls
no test coverage detected