| 97 | } ; |
| 98 | |
| 99 | class file_not_found : public file_io_error { // #nocov start |
| 100 | public: |
| 101 | file_not_found(const std::string& file) throw() : |
| 102 | file_io_error("file not found", file) {} // #nocov end |
| 103 | }; |
| 104 | |
| 105 | class file_exists : public file_io_error { // #nocov start |
| 106 | public: |