| 122 | public: |
| 123 | PermissionDeniedIOException(const char *what) : IOException(what) {}; |
| 124 | PermissionDeniedIOException(const std::string &what) : IOException(what) {}; |
| 125 | |
| 126 | const char *type() const throw() override { return "Permission Denied"; } |
| 127 | }; |
no outgoing calls
no test coverage detected