| 126 | }; |
| 127 | |
| 128 | class UnimplementedFilesystemException : public FilesystemException |
| 129 | { |
| 130 | public: |
| 131 | UnimplementedFilesystemException(const std::string& msg): |
| 132 | FilesystemException(msg) |
| 133 | { |
| 134 | } |
| 135 | |
| 136 | UnimplementedFilesystemException(): |
| 137 | FilesystemException("Unimplemented operation") |
| 138 | { |
| 139 | } |
| 140 | }; |
| 141 | |
| 142 | class Filesystem |
| 143 | { |
no outgoing calls
no test coverage detected