diff options
Diffstat (limited to 'src/lib/exceptions.h')
| -rw-r--r-- | src/lib/exceptions.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 80d4801da..10231f59a 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -471,4 +471,13 @@ public: }; +class MissingConfigurationError : public std::runtime_error +{ +public: + explicit MissingConfigurationError(std::string s) + : std::runtime_error(s) + {} +}; + + #endif |
