Support CPL metadata.
[libdcp.git] / src / exceptions.cc
index 0256c2b55008d2ee82badf43662f023d49ec438d..16676e20f70ac6560096a4c74ed1aeb489158026 100644 (file)
@@ -137,3 +137,30 @@ CombineError::CombineError (string message)
        : runtime_error (message)
 {}
 
+
+LanguageTagError::LanguageTagError (std::string message)
+       : runtime_error (message)
+{}
+
+
+BadSettingError::BadSettingError (std::string message)
+       : runtime_error (message)
+{
+
+}
+
+
+DuplicateIdError::DuplicateIdError (std::string message)
+       : runtime_error (message)
+{
+
+}
+
+
+MainSoundConfigurationError::MainSoundConfigurationError (std::string s)
+       : runtime_error (String::compose("Could not parse MainSoundConfiguration %1", s))
+{
+
+}
+
+>>>>>>> Support CPL metadata.