1
// =================================
2
// Copyright (c) 2021 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
using
System
;
7
8
namespace
System
.
Xml
.
Serialization
9
{
10
public
class
XmlSerializationException
:
Exception
11
{
12
public
nothrow
XmlSerializationException
(
const
string
&
message_
)
:
base
(
message_
)
13
{
14
}
15
}
16
}
17