diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-08-27 22:59:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-21 21:57:18 +0200 |
| commit | b933775fc54e0b51ad3777d72bf2866f0c04bacc (patch) | |
| tree | c13133d7cfe9722f3b2eeaa52a8686e029172377 /src/exceptions.h | |
| parent | 1ae2755dbbaa30b6240dfd304c289253a577b424 (diff) | |
Support CPL metadata.
Diffstat (limited to 'src/exceptions.h')
| -rw-r--r-- | src/exceptions.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h index 79ee9fca..12624175 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -254,6 +254,28 @@ public: LanguageTagError (std::string message); }; + +class BadSettingError : public std::runtime_error +{ +public: + BadSettingError (std::string message); +}; + + +class DuplicateIdError : public std::runtime_error +{ +public: + DuplicateIdError (std::string message); +}; + + +class MainSoundConfigurationError : public std::runtime_error +{ +public: + MainSoundConfigurationError (std::string s); +}; + + } #endif |
