| 83 | class file_io_error : public std::exception { |
| 84 | public: |
| 85 | file_io_error(const std::string& file) throw() : // #nocov start |
| 86 | message(std::string("file io error: '") + file + "'"), file(file) {}; |
| 87 | file_io_error(int code, const std::string& file) throw() : |
| 88 | message("file io error " + toString(code) + ": '" + file + "'"), file(file) {}; |
| 89 | file_io_error(const std::string& msg, const std::string& file) throw() : |
nothing calls this directly
no test coverage detected