libzypp
10.5.0
|
00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00012 #include <iostream> 00013 //#include "zypp/base/LogTools.h" 00014 00015 #include "zypp/PluginFrameException.h" 00016 #include "zypp/PluginFrame.h" 00017 00018 using std::endl; 00019 00021 namespace zypp 00022 { 00023 00024 PluginFrameException::PluginFrameException() 00025 : Exception( "PluginFrameException" ) 00026 {} 00027 00028 PluginFrameException::PluginFrameException( const std::string & msg_r ) 00029 : Exception( msg_r ) 00030 {} 00031 00032 PluginFrameException::PluginFrameException( const std::string & msg_r, const std::string & hist_r ) 00033 : Exception( msg_r ) 00034 { addHistory( hist_r ); } 00035 00036 PluginFrameException::~PluginFrameException() throw() 00037 {}; 00038 00040 } // namespace zypp