| 81 | }; |
| 82 | |
| 83 | class BadFilesystemException : public FilesystemException |
| 84 | { |
| 85 | public: |
| 86 | BadFilesystemException(): FilesystemException("Invalid filesystem") {} |
| 87 | |
| 88 | BadFilesystemException(const std::string& msg): FilesystemException(msg) {} |
| 89 | }; |
| 90 | |
| 91 | class CannotWriteException : public FilesystemException |
| 92 | { |
no outgoing calls
no test coverage detected