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