Another build fix.
[libdcp.git] / src / exceptions.cc
index 42c3ab19861a85841eec3261151a0e6593bbda09..a49c700438b344177350dca31e8d5c38aa3be244 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
@@ -62,12 +62,8 @@ TimeFormatError::TimeFormatError (string bad_time)
 
 }
 
-MissingAssetError::MissingAssetError (boost::filesystem::path path, AssetType type)
-       : DCPReadError (
-               type == MAIN_PICTURE    ? String::compose ("Missing asset %1 for main picture", path.string()) :
-               (type == MAIN_SOUND     ? String::compose ("Missing asset %1 for main sound", path.string()) :
-                (type == MAIN_SUBTITLE ? String::compose ("Missing asset %1 for main subtitle", path.string()) :
-                 String::compose ("Missing asset %1", path.string()))))
+BadContentKindError::BadContentKindError (string content_kind)
+       : DCPReadError (String::compose("Bad content kind '%1'", content_kind))
 {
 
 }
@@ -85,8 +81,45 @@ ProgrammingError::ProgrammingError (string file, int line)
 
 }
 
-MismatchedStandardError::MismatchedStandardError ()
-       : DCPReadError ("DCP contains both Interop and SMPTE parts")
+KDMDecryptionError::KDMDecryptionError (std::string message, int cipher_length, int modulus_dmax)
+       : runtime_error (String::compose ("Could not decrypt KDM (%1) (%2/%3)", message, cipher_length, modulus_dmax))
+{
+
+}
+
+KDMFormatError::KDMFormatError (std::string message)
+       : runtime_error (String::compose ("Could not parse KDM (%1)", message))
+{
+
+}
+
+CertificateChainError::CertificateChainError (string message)
+       : runtime_error (message)
+{
+
+}
+
+DCPReadError::DCPReadError (string message, string detail)
+       : runtime_error(String::compose("%1 (%2)", message, detail))
+       , _message(message)
+       , _detail(detail)
+{
+
+}
+
+MissingSubtitleImageError::MissingSubtitleImageError (string id)
+       : runtime_error (String::compose("Could not load image for subtitle %1", id))
+{
+
+}
+
+BadKDMDateError::BadKDMDateError (bool starts_too_early)
+       : runtime_error (
+               starts_too_early ?
+               "KDM validity period starts before or close to the start of the signing certificate validity period" :
+               "KDM validity ends after or close to the end of the signing certificate's validity period"
+               )
+       , _starts_too_early (starts_too_early)
 {
 
 }