Imported Upstream version 17.23.5
[platform/upstream/libzypp.git] / zypp / parser / xml / ParseDefException.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/parser/xml/ParseDefException.cc
10  *
11 */
12 #include <zypp/parser/xml/ParseDefException.h>
13
14 ///////////////////////////////////////////////////////////////////
15 namespace zypp
16 { /////////////////////////////////////////////////////////////////
17   ///////////////////////////////////////////////////////////////////
18   namespace xml
19   { /////////////////////////////////////////////////////////////////
20
21     ///////////////////////////////////////////////////////////////////
22     //
23     //  METHOD NAME : ParseDefException::ParseDefException
24     //  METHOD TYPE : Constructor
25     //
26     ParseDefException::ParseDefException( const std::string & what_r )
27     : Exception( what_r )
28     {}
29
30     ///////////////////////////////////////////////////////////////////
31     //
32     //  METHOD NAME : ParseDefBuildException::ParseDefBuildException
33     //  METHOD TYPE : Constructor
34     //
35     ParseDefBuildException::ParseDefBuildException( const std::string & what_r )
36     : ParseDefException( what_r )
37     {}
38
39     ///////////////////////////////////////////////////////////////////
40     //
41     //  METHOD NAME : ParseDefValidateException::ParseDefValidateException
42     //  METHOD TYPE : Constructor
43     //
44     ParseDefValidateException::ParseDefValidateException( const std::string & what_r )
45     : ParseDefException( what_r )
46     {}
47
48     ///////////////////////////////////////////////////////////////////
49     //
50     //  METHOD NAME : ParseDefDataException::ParseDefDataException
51     //  METHOD TYPE : Constructor
52     //
53     ParseDefDataException::ParseDefDataException( const std::string & what_r )
54     : ParseDefException( what_r )
55     {}
56
57     /////////////////////////////////////////////////////////////////
58   } // namespace xml
59   ///////////////////////////////////////////////////////////////////
60   /////////////////////////////////////////////////////////////////
61 } // namespace zypp
62 ///////////////////////////////////////////////////////////////////