Pass force-cpp11 down to libcxml.
[libdcp.git] / src / exceptions.h
index 2871ee86598f7696373ca452ec2ee26e8c5d9c39..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.
 
@@ -99,6 +99,7 @@ class DCPReadError : public std::runtime_error
 public:
        explicit DCPReadError (std::string message)
                : std::runtime_error(message)
+               , _message(message)
        {}
 
        DCPReadError (std::string message, std::string detail);
@@ -118,21 +119,10 @@ private:
        boost::optional<std::string> _detail;
 };
 
-/** @class MissingAssetError
- *  @brief An error of a missing asset.
- */
-class MissingAssetError : public DCPReadError
+class BadContentKindError : 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 () {}
+       BadContentKindError (std::string content_kind);
 };
 
 /** @class XMLError
@@ -184,12 +174,6 @@ public:
        ProgrammingError (std::string file, int line);
 };
 
-class MismatchedStandardError : public DCPReadError
-{
-public:
-       MismatchedStandardError ();
-};
-
 class KDMDecryptionError : public std::runtime_error
 {
 public:
@@ -208,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