X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexceptions.h;h=5cbf6994154dadaeda169130cd82ac2ddaf48637;hb=fc4c3e7f0a08d9e2350edb56fa76258114042960;hp=93be3999b29a84feeda8e5584052c29872753aaf;hpb=689fa55d1529ad88449ca464e9107c4dcc54d1cb;p=dcpomatic.git diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 93be3999b..5cbf69941 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -50,12 +50,20 @@ public: {} DecodeError (std::string function, std::string caller) - : std::runtime_error (String::compose("%1 failed [%2", function, caller)) + : std::runtime_error (String::compose("%1 failed [%2]", function, caller)) {} DecodeError (std::string function, std::string caller, int error) : std::runtime_error (String::compose("%1 failed [%2] (%3)", function, caller, error)) {} + + DecodeError (std::string function, std::string caller, boost::filesystem::path file) + : std::runtime_error (String::compose("%1 failed [%2] (%3)", function, caller, file.string())) + {} + + DecodeError (std::string function, std::string caller, int error, boost::filesystem::path file) + : std::runtime_error (String::compose("%1 failed [%2] (%3) (%4)", function, caller, error, file.string())) + {} };