Add FIXME.
[dcpomatic.git] / src / lib / exceptions.cc
index f07354ca109cb953b61e3f4c53e9eaa21870c5cc..4590531b7bd5a8cabe73d70650dd5b96467083bd 100644 (file)
@@ -27,15 +27,14 @@ 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, bool reading)
+       : FileError (
+               String::compose (
+                       reading ? _("could not open file %1 for reading (%2)") : _("could not open file %1 for writing (%2)"),
+                       f.string(),
+                       error),
+               f
+               )
 {
 
 }
@@ -76,6 +75,12 @@ InvalidSignerError::InvalidSignerError ()
 
 }
 
+InvalidSignerError::InvalidSignerError (string reason)
+       : runtime_error (String::compose (_("The certificate chain for signing is invalid (%1)"), reason))
+{
+
+}
+
 ProgrammingError::ProgrammingError (string file, int line)
        : runtime_error (String::compose (_("Programming error at %1:%2"), file, line))
 {