1 | // |
---|---|
2 | // XMLException.cpp |
3 | // |
4 | // Library: XML |
5 | // Package: XML |
6 | // Module: XMLException |
7 | // |
8 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/XML/XMLException.h" |
16 | #include <typeinfo> |
17 | |
18 | |
19 | using Poco::RuntimeException; |
20 | |
21 | |
22 | namespace Poco { |
23 | namespace XML { |
24 | |
25 | |
26 | POCO_IMPLEMENT_EXCEPTION(XMLException, RuntimeException, "XML Exception") |
27 | |
28 | |
29 | } } // namespace Poco::XML |
30 |