diff options
Diffstat (limited to 'libs/installer_fomod_plus/share/xml/XmlParseException.h')
| -rw-r--r-- | libs/installer_fomod_plus/share/xml/XmlParseException.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/installer_fomod_plus/share/xml/XmlParseException.h b/libs/installer_fomod_plus/share/xml/XmlParseException.h new file mode 100644 index 0000000..6406f3b --- /dev/null +++ b/libs/installer_fomod_plus/share/xml/XmlParseException.h @@ -0,0 +1,10 @@ +#pragma once + +#include <stdexcept> +#include <string> + +class XmlParseException final : public std::runtime_error { +public: + explicit XmlParseException(const std::string& message) + : std::runtime_error(message) {} +}; |
