Pass force-cpp11 down to libcxml.
[libdcp.git] / src / exceptions.h
index d66e89449632eb13a9d8b823464a1b2657446625..ccf7a081523b18e224360be563a9d3bd53a43b55 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
@@ -119,23 +119,6 @@ private:
        boost::optional<std::string> _detail;
 };
 
-/** @class MissingAssetError
- *  @brief An error of a missing asset.
- */
-class MissingAssetError : public DCPReadError
-{
-public:
-       enum AssetType {
-               MAIN_PICTURE,  //< main picture is missing
-               MAIN_SOUND,    //< main sound is missing
-               MAIN_SUBTITLE, //< main subtitle is missing
-               UNKNOWN        //< something is missing but we don't know what
-       };
-
-       MissingAssetError (boost::filesystem::path, AssetType = UNKNOWN);
-       ~MissingAssetError () throw () {}
-};
-
 class BadContentKindError : public DCPReadError
 {
 public:
@@ -191,12 +174,6 @@ public:
        ProgrammingError (std::string file, int line);
 };
 
-class MismatchedStandardError : public DCPReadError
-{
-public:
-       MismatchedStandardError ();
-};
-
 class KDMDecryptionError : public std::runtime_error
 {
 public:
@@ -215,6 +192,25 @@ public:
        CertificateChainError (std::string message);
 };
 
+class MissingSubtitleImageError : public std::runtime_error
+{
+public:
+       MissingSubtitleImageError (std::string id);
+};
+
+class BadKDMDateError : public std::runtime_error
+{
+public:
+       BadKDMDateError (bool starts_too_early);
+
+       bool starts_too_early () const {
+               return _starts_too_early;
+       }
+
+private:
+       bool _starts_too_early;
+};
+
 }
 
 #endif