X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexceptions.cc;h=8144f41b999690f526db309a4102547f4e69a05c;hb=406ddd165456ad769b4109535530d408a4221077;hp=bc6ac27c872a08c04c4de447a37f6f0cbcaedb0c;hpb=a00ebbc68438e84076c65e99d0e70403afb4407d;p=dcpomatic.git diff --git a/src/lib/exceptions.cc b/src/lib/exceptions.cc index bc6ac27c8..8144f41b9 100644 --- a/src/lib/exceptions.cc +++ b/src/lib/exceptions.cc @@ -25,29 +25,29 @@ using std::string; /** @param f File that we were trying to open */ -OpenFileError::OpenFileError (string f) - : FileError (String::compose (_("could not open file %1"), f), f) +OpenFileError::OpenFileError (boost::filesystem::path f) + : FileError (String::compose (_("could not open file %1"), f.string()), f) { } /** @param f File that we were trying to create */ -CreateFileError::CreateFileError (string f) - : FileError (String::compose (_("could not create file %1"), f), f) +CreateFileError::CreateFileError (boost::filesystem::path f) + : FileError (String::compose (_("could not create file %1"), f.string()), f) { } -ReadFileError::ReadFileError (string f, int e) - : FileError ("", f) +ReadFileError::ReadFileError (boost::filesystem::path f, int e) + : FileError (String::compose (_("could not read from file %1 (%2)"), f.string(), strerror (e)), f) { - _what = String::compose (_("could not read from file %1 (%2)"), f, strerror (e)); + } -WriteFileError::WriteFileError (std::string f, int e) - : FileError ("", f) +WriteFileError::WriteFileError (boost::filesystem::path f, int e) + : FileError (String::compose (_("could not write to file %1 (%2)"), f.string(), strerror (e)), f) { - _what = String::compose (_("could not write to file %1 (%2)"), f, strerror (e)); + } MissingSettingError::MissingSettingError (string s)