libzypp 17.31.23
ParseDefException.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_PARSER_XML_PARSEDEFEXCEPTION_H
13#define ZYPP_PARSER_XML_PARSEDEFEXCEPTION_H
14
15#include <string>
16
17#include <zypp/base/Exception.h>
18
20namespace zypp
21{
23 namespace xml
24 {
25
27 //
28 // CLASS NAME : ParseDefException
29 //
32 {
33 ParseDefException( const std::string & what_r );
34 };
36
38 //
39 // CLASS NAME : ParseDefBuildException
40 //
43 {
44 ParseDefBuildException( const std::string & what_r );
45 };
47
49 //
50 // CLASS NAME : ParseDefValidateException
51 //
54 {
55 ParseDefValidateException( const std::string & what_r );
56 };
58
60 //
61 // CLASS NAME : ParseDefDataException
62 //
65 {
66 ParseDefDataException( const std::string & what_r );
67 };
69
71 } // namespace xml
74} // namespace zypp
76#endif // ZYPP_PARSER_XML_PARSEDEFEXCEPTION_H
Base class for Exception.
Definition: Exception.h:146
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
Exceptions when building a ParseDef tree.
Parse exceptions related to the nodes content.
Common base class for ParseDef exceptions.
Parse exceptions related to the documents node structure.