summaryrefslogtreecommitdiff
path: root/src/lib/exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/exceptions.h')
-rw-r--r--src/lib/exceptions.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h
index 38452ffc0..a8969d702 100644
--- a/src/lib/exceptions.h
+++ b/src/lib/exceptions.h
@@ -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
*