libzypp  11.13.5
ParseDefException.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
13 
15 namespace zypp
16 {
17 
18  namespace xml
19  {
20 
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 
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 
40  //
41  // METHOD NAME : ParseDefValidateException::ParseDefValidateException
42  // METHOD TYPE : Constructor
43  //
45  : ParseDefException( what_r )
46  {}
47 
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 
58  } // namespace xml
61 } // namespace zypp