blob: 6406f3b37072cbf9d7a807eb73bb9ea2bd06a9eb (
plain)
1
2
3
4
5
6
7
8
9
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) {}
};
|