diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-03-11 20:23:11 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-03-11 20:23:11 +0000 |
| commit | 4fc16ea5fbe1db26d5c50415374a71c0dbf68b0d (patch) | |
| tree | 4b42ade518e8fe2d003d2d85f0b124664d91609e /src/lib/exceptions.h | |
| parent | 00596df5d47d306b3550ab33e0691bf3fb68567a (diff) | |
Give a better error when opening a DCP with File -> Open by mistake (#1723).v2.14.32
Diffstat (limited to 'src/lib/exceptions.h')
| -rw-r--r-- | src/lib/exceptions.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 99f0a5d87..bd94fb92b 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -117,6 +117,22 @@ public: OpenFileError (boost::filesystem::path f, int error, Mode mode); }; +class FileNotFoundError : public std::runtime_error +{ +public: + FileNotFoundError (boost::filesystem::path f); + virtual ~FileNotFoundError () throw () {} + + /** @return name of the file that this exception concerns */ + boost::filesystem::path file () const { + return _file; + } + +private: + /** name of the file that this exception concerns */ + boost::filesystem::path _file; +}; + /** @class ReadFileError. * @brief Indicates that some error occurred when trying to read from a file */ |
