Merge master.
[dcpomatic.git] / src / lib / exceptions.h
index 38452ffc02b7c0867596cb55787a77c29eeafc01..a8969d7024c6aa60c0bd3460d66ca9034b7d3456 100644 (file)
@@ -245,10 +245,18 @@ public:
        SubRipError (std::string, std::string, boost::filesystem::path);
 };
 
+class DCPError : public StringError
+{
+public:
+       DCPError (std::string s)
+               : StringError (s)
+       {}
+};
+
 /** @class ExceptionStore
  *  @brief A parent class for classes which have a need to catch and
  *  re-throw exceptions.
-
+ *
  *  This is intended for classes which run their own thread; they should do
  *  something like
  *