diff options
Diffstat (limited to 'src/lib/exceptions.h')
| -rw-r--r-- | src/lib/exceptions.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 3069d792e..c1bb8f6b6 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -542,4 +542,13 @@ public: }; +class FCPXMLError : public std::runtime_error +{ +public: + explicit FCPXMLError(std::string s) + : std::runtime_error(s) + {} +}; + + #endif |
