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