summaryrefslogtreecommitdiff
path: root/src/exceptions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r--src/exceptions.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
index 70320b52..16676e20 100644
--- a/src/exceptions.cc
+++ b/src/exceptions.cc
@@ -137,6 +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.