X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexceptions.h;h=b04d973dc7a62197571ce7d6697917f2023b23e0;hb=373f010a7f04add1f49169cbaa60cb7ae5f508d4;hp=6920556e5c05a95a24eadfe398c226a4c0df3cb3;hpb=5859b758e3a6e0191ce12e77b636c7def58bbc3b;p=dcpomatic.git diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 6920556e5..b04d973dc 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -17,8 +17,8 @@ */ -#ifndef DVDOMATIC_EXCEPTIONS_H -#define DVDOMATIC_EXCEPTIONS_H +#ifndef DCPOMATIC_EXCEPTIONS_H +#define DCPOMATIC_EXCEPTIONS_H /** @file src/exceptions.h * @brief Our exceptions. @@ -27,6 +27,7 @@ #include #include #include +#include #include extern "C" { #include @@ -87,7 +88,7 @@ public: /** @param m Error message. * @param f Name of the file that this exception concerns. */ - FileError (std::string m, std::string f) + FileError (std::string m, boost::filesystem::path f) : StringError (m) , _file (f) {} @@ -95,13 +96,13 @@ public: virtual ~FileError () throw () {} /** @return name of the file that this exception concerns */ - std::string file () const { + boost::filesystem::path file () const { return _file; } private: /** name of the file that this exception concerns */ - std::string _file; + boost::filesystem::path _file; }; @@ -112,8 +113,7 @@ class OpenFileError : public FileError { public: /** @param f File that we were trying to open */ - /* XXX: should be boost::filesystem::path */ - OpenFileError (std::string f); + OpenFileError (boost::filesystem::path f); }; /** @class CreateFileError. @@ -123,7 +123,7 @@ class CreateFileError : public FileError { public: /** @param f File that we were trying to create */ - CreateFileError (std::string f); + CreateFileError (boost::filesystem::path f); }; @@ -136,7 +136,7 @@ public: /** @param f File that we were trying to read from. * @param e errno value, or 0. */ - ReadFileError (std::string f, int e = 0); + ReadFileError (boost::filesystem::path f, int e = 0); }; /** @class WriteFileError. @@ -148,7 +148,7 @@ public: /** @param f File that we were trying to write to. * @param e errno value, or 0. */ - WriteFileError (std::string f, int e); + WriteFileError (boost::filesystem::path f, int e); }; /** @class SettingError. @@ -209,6 +209,14 @@ public: {} }; +class KDMError : public StringError +{ +public: + KDMError (std::string s) + : StringError (s) + {} +}; + class PixelFormatError : public StringError { public: