Handle subtitles which contain Pango markup.
[dcpomatic.git] / src / lib / exceptions.cc
index f07354ca109cb953b61e3f4c53e9eaa21870c5cc..f3e3a999c8a42ed230d88da04657ac9fc5d5984f 100644 (file)
@@ -27,15 +27,8 @@ using std::string;
 using std::runtime_error;
 
 /** @param f File that we were trying to open */
-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 (boost::filesystem::path f)
-       : FileError (String::compose (_("could not create file %1"), f.string()), f)
+OpenFileError::OpenFileError (boost::filesystem::path f, int error)
+       : FileError (String::compose (_("could not open file %1 (%2)"), f.string(), error), f)
 {
 
 }