diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-20 16:21:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-20 16:21:42 +0100 |
| commit | f071268af155c9443fadba8d4368f960b82704ab (patch) | |
| tree | ad36f17e3c77b33a845d35d0f7f26b84ed176d25 /src/lib/exceptions.cc | |
| parent | 5d9f6da737b07cc7caac47cab77e93eeb2843cf0 (diff) | |
Some more use of boost::filesystem::path; catch exceptions in OnInit().
Diffstat (limited to 'src/lib/exceptions.cc')
| -rw-r--r-- | src/lib/exceptions.cc | 20 |
1 files changed, 10 insertions, 10 deletions
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) |
