More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / exceptions.h
index 99a8c0dc47dcb585b95a25f436e64c1fdee3c85b..fe87ababcad292335b52ed07d0328c19484420bb 100644 (file)
@@ -39,7 +39,15 @@ extern "C" {
 class DecodeError : public std::runtime_error
 {
 public:
-       DecodeError (std::string s)
+       explicit DecodeError (std::string s)
+               : std::runtime_error (s)
+       {}
+};
+
+class CryptoError : public std::runtime_error
+{
+public:
+       explicit CryptoError (std::string s)
                : std::runtime_error (s)
        {}
 };
@@ -50,7 +58,7 @@ public:
 class EncodeError : public std::runtime_error
 {
 public:
-       EncodeError (std::string s)
+       explicit EncodeError (std::string s)
                : std::runtime_error (s)
        {}
 };
@@ -84,7 +92,7 @@ private:
 class JoinError : public std::runtime_error
 {
 public:
-       JoinError (std::string s)
+       explicit JoinError (std::string s)
                : std::runtime_error (s)
        {}
 };
@@ -158,7 +166,7 @@ class MissingSettingError : public SettingError
 {
 public:
        /** @param s Name of setting that was required */
-       MissingSettingError (std::string s);
+       explicit MissingSettingError (std::string s);
 };
 
 /** @class BadSettingError
@@ -167,7 +175,9 @@ public:
 class BadSettingError : public SettingError
 {
 public:
-       /** @param s Name of setting that is bad */
+       /** @param s Name of setting that is bad.
+        *  @param m Error message.
+        */
        BadSettingError (std::string s, std::string m)
                : SettingError (s, m)
        {}
@@ -179,7 +189,7 @@ public:
 class NetworkError : public std::runtime_error
 {
 public:
-       NetworkError (std::string s)
+       explicit NetworkError (std::string s)
                : std::runtime_error (s)
        {}
 };
@@ -190,9 +200,20 @@ public:
 class KDMError : public std::runtime_error
 {
 public:
-       KDMError (std::string s)
-               : std::runtime_error (s)
-       {}
+       KDMError (std::string s, std::string d);
+       ~KDMError () throw() {}
+
+       std::string summary () const {
+               return _summary;
+       }
+
+       std::string detail () const {
+               return _detail;
+       }
+
+private:
+       std::string _summary;
+       std::string _detail;
 };
 
 /** @class PixelFormatError
@@ -216,7 +237,7 @@ public:
 class DCPError : public std::runtime_error
 {
 public:
-       DCPError (std::string s)
+       explicit DCPError (std::string s)
                : std::runtime_error (s)
        {}
 };
@@ -225,19 +246,27 @@ class InvalidSignerError : public std::runtime_error
 {
 public:
        InvalidSignerError ();
-       InvalidSignerError (std::string reason);
+       explicit InvalidSignerError (std::string reason);
 };
 
 class ProgrammingError : public std::runtime_error
 {
 public:
-       ProgrammingError (std::string file, int line);
+       ProgrammingError (std::string file, int line, std::string message = "");
 };
 
 class TextEncodingError : public std::runtime_error
 {
 public:
-       TextEncodingError (std::string s)
+       explicit TextEncodingError (std::string s)
+               : std::runtime_error (s)
+       {}
+};
+
+class MetadataError : public std::runtime_error
+{
+public:
+       explicit MetadataError (std::string s)
                : std::runtime_error (s)
        {}
 };
@@ -245,9 +274,15 @@ public:
 class OldFormatError : public std::runtime_error
 {
 public:
-       OldFormatError (std::string s)
+       explicit OldFormatError (std::string s)
                : std::runtime_error (s)
        {}
 };
 
+class KDMAsContentError : public std::runtime_error
+{
+public:
+       KDMAsContentError ();
+};
+
 #endif