summaryrefslogtreecommitdiff
path: root/src/exceptions.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-06-24 12:31:56 +0100
committerCarl Hetherington <cth@carlh.net>2019-06-28 23:26:10 +0100
commit759a2e6150e2a611db90cd81c0b2f81699eb22bd (patch)
treeae1a28f9873f598f699b9400040f8212eb8c846e /src/exceptions.h
parent79e9e5e1ee2b6757c85a9e79893c4be413bd6d62 (diff)
Add support for \c in SSA.v1.4.9
Backported from 2e4089247c02f1f1bf43ab880594ce0218dfbc11 in master.
Diffstat (limited to 'src/exceptions.h')
-rw-r--r--src/exceptions.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h
index 56b58aa..2bb7018 100644
--- a/src/exceptions.h
+++ b/src/exceptions.h
@@ -65,6 +65,14 @@ private:
std::list<std::string> _context;
};
+class SSAError : public std::runtime_error
+{
+public:
+ SSAError (std::string message)
+ : std::runtime_error(message)
+ {}
+};
+
class MXFError : public std::runtime_error
{
public: