Updated cs_CZ translation from Tomáš Begeni.
[dcpomatic.git] / src / lib / exceptions.h
index ace7a1c000a55afcc955f62f64990030aee253ac..10231f59acaf24571c890361ec15f8094d33e3c6 100644 (file)
@@ -466,8 +466,17 @@ class PrivilegeError : public std::runtime_error
 {
 public:
        explicit PrivilegeError (std::string s)
-                       : std::runtime_error (s)
-               {}
+               : std::runtime_error (s)
+       {}
+};
+
+
+class MissingConfigurationError : public std::runtime_error
+{
+public:
+       explicit MissingConfigurationError(std::string s)
+               : std::runtime_error(s)
+       {}
 };