libzypp 17.31.23
userrequestexception.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_CORE_BASE_USERREQUESTEXCEPTION_H
13#define ZYPP_CORE_BASE_USERREQUESTEXCEPTION_H
14
15#include <iosfwd>
16
17#include <zypp/base/Exception.h>
18
20namespace zypp
21{
22
24 //
25 // CLASS NAME : UserRequestException
26 //
65 {
66 public:
68 public:
69 explicit
70 UserRequestException( const std::string & msg_r = std::string() );
71 UserRequestException( const std::string & msg_r, const Exception & history_r );
72 explicit
73 UserRequestException( Kind kind_r, const std::string & msg_r = std::string() );
74 UserRequestException( Kind kind_r, const std::string & msg_r, const Exception & history_r );
75 public:
76 Kind kind() const
77 { return _kind; }
78 protected:
79 virtual std::ostream & dumpOn( std::ostream & str ) const;
80 private:
82 };
84
86#define declException( EXCP, KIND ) \
87 struct EXCP : public UserRequestException { \
88 explicit \
89 EXCP( const std::string & msg_r = std::string() ) \
90 : UserRequestException( KIND, msg_r ) \
91 {} \
92 EXCP( const std::string & msg_r, const Exception & history_r ) \
93 : UserRequestException( KIND, msg_r, history_r ) \
94 {} \
95 }
96
97 declException( IgnoreRequestException, IGNORE );
98 declException( SkipRequestException, SKIP );
99 declException( RetryRequestException, RETRY );
100 declException( AbortRequestException, ABORT );
101
102#undef declException
103
105} // namespace zypp
107#endif // ZYPP_CORE_BASE_USERREQUESTEXCEPTION_H
#define declException(EXCP, BASE)
Convenience macro to declare more specific PluginScriptExceptions.
Base class for Exception.
Definition: Exception.h:146
Base for exceptions caused by explicit user request.
virtual std::ostream & dumpOn(std::ostream &str) const
Overload this to print a proper error message.
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2