| 73 | }; |
| 74 | |
| 75 | class FileNotFoundException : public FilesystemException |
| 76 | { |
| 77 | public: |
| 78 | FileNotFoundException(): FilesystemException("File not found") {} |
| 79 | |
| 80 | FileNotFoundException(const std::string& msg): FilesystemException(msg) {} |
| 81 | }; |
| 82 | |
| 83 | class BadFilesystemException : public FilesystemException |
| 84 | { |
no outgoing calls
no test coverage detected