| 170 | } |
| 171 | |
| 172 | FileNotWritable::FileNotWritable(const char* file, int line, const char* function, const std::string& filename) noexcept : |
| 173 | BaseException(file, line, function, "FileNotWritable", "the file '" + filename + "' is not writable for the current user") |
| 174 | { |
| 175 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 176 | } |
| 177 | |
| 178 | FileNameTooLong::FileNameTooLong(const char* file, int line, const char* function, const std::string& filename, int max_length) noexcept : |
| 179 | BaseException(file, line, function, "FileNameTooLong", |
nothing calls this directly
no test coverage detected