1 /**
2  **	\file XmlException.cpp
3  **	\date  2008-02-09
4  **	\author grymse@alhem.net
5 **/
6 /*
7 Copyright (C) 2008-2011  Anders Hedstrom
8 
9 This library is made available under the terms of the GNU GPL, with
10 the additional exemption that compiling, linking, and/or using OpenSSL
11 is allowed.
12 
13 If you would like to use this library in a closed-source application,
14 a separate license agreement is available. For information about
15 the closed-source license agreement for the C++ sockets library,
16 please visit http://www.alhem.net/Sockets/license.html and/or
17 email license@alhem.net.
18 
19 This program is free software; you can redistribute it and/or
20 modify it under the terms of the GNU General Public License
21 as published by the Free Software Foundation; either version 2
22 of the License, or (at your option) any later version.
23 
24 This program is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of
26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27 GNU General Public License for more details.
28 
29 You should have received a copy of the GNU General Public License
30 along with this program; if not, write to the Free Software
31 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
32 */
33 #include "XmlException.h"
34 #ifdef ENABLE_XML
35 
36 #ifdef SOCKETS_NAMESPACE
37 namespace SOCKETS_NAMESPACE {
38 #endif
39 
40 
XmlException(const std::string & descr)41 XmlException::XmlException(const std::string& descr)
42 :Exception(descr)
43 {
44 }
45 
46 
47 #ifdef SOCKETS_NAMESPACE
48 }
49 #endif
50 #endif // ENABLE_XML
51