| 113 | }; |
| 114 | |
| 115 | class ReadOnlyFilesystemException : public FilesystemException |
| 116 | { |
| 117 | public: |
| 118 | ReadOnlyFilesystemException(): FilesystemException("Read only filesystem") |
| 119 | { |
| 120 | } |
| 121 | |
| 122 | ReadOnlyFilesystemException(const std::string& msg): |
| 123 | FilesystemException(msg) |
| 124 | { |
| 125 | } |
| 126 | }; |
| 127 | |
| 128 | class UnimplementedFilesystemException : public FilesystemException |
| 129 | { |