summaryrefslogtreecommitdiff
path: root/src/exceptions.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-08-27 22:59:12 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-21 21:57:18 +0200
commitb933775fc54e0b51ad3777d72bf2866f0c04bacc (patch)
treec13133d7cfe9722f3b2eeaa52a8686e029172377 /src/exceptions.cc
parent1ae2755dbbaa30b6240dfd304c289253a577b424 (diff)
Support CPL metadata.
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.