libzypp  15.28.6
PluginFrameException.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_PLUGINFRAMEEXCEPTION_H
13 #define ZYPP_PLUGINFRAMEEXCEPTION_H
14 
15 #include <iosfwd>
16 
17 #include "zypp/base/Exception.h"
18 #include "zypp/Pathname.h"
19 
21 namespace zypp
22 {
23 
25  //
26  // CLASS NAME : PluginFrameException
27  //
30  {
31  public:
33  PluginFrameException( const std::string & msg_r );
34  PluginFrameException( const std::string & msg_r, const std::string & hist_r );
35  virtual ~PluginFrameException() throw();
36  };
38 
40 } // namespace zypp
42 #endif // ZYPP_PLUGINFRAMEEXCEPTION_H
Base class for PluginFrame Exception.
Base class for Exception.
Definition: Exception.h:143