1
// =================================
2
// Copyright (c) 2021 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
#include <sngxml/dom/DomApi.hpp>
7
#include <stdexcept>
8
9
namespace
sngxml
{
namespace
dom
{
10
11
class
DomException
:
std
::
runtime_error
12
{
13
public
:
14
DomException
(
const
std
::
string
&
message_
)
;
15
};
16
17
}
}
// namespace sngxml::dom