From 4fc16ea5fbe1db26d5c50415374a71c0dbf68b0d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 11 Mar 2020 20:23:11 +0000 Subject: Give a better error when opening a DCP with File -> Open by mistake (#1723). --- src/lib/exceptions.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/lib/exceptions.h') 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 */ -- cgit v1.2.3