libzypp 17.31.23
ParseDefException.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
13
15namespace zypp
16{
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 //
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 //
54 : ParseDefException( what_r )
55 {}
56
58 } // namespace xml
61} // namespace zypp
Base class for Exception.
Definition: Exception.h:146
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
ParseDefBuildException(const std::string &what_r)
ParseDefDataException(const std::string &what_r)
Common base class for ParseDef exceptions.
ParseDefException(const std::string &what_r)
ParseDefValidateException(const std::string &what_r)