| 89 | }; |
| 90 | |
| 91 | class CannotWriteException : public FilesystemException |
| 92 | { |
| 93 | public: |
| 94 | CannotWriteException(): FilesystemException("Cannot write file") {} |
| 95 | |
| 96 | CannotWriteException(const std::string& msg): FilesystemException(msg) {} |
| 97 | }; |
| 98 | |
| 99 | class DiskFullException : public CannotWriteException |
| 100 | { |
no outgoing calls
no test coverage detected