Imported Upstream version 17.23.5
[platform/upstream/libzypp.git] / zypp / PluginScriptException.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/PluginScriptException.cc
10  *
11 */
12 #include <iostream>
13 //#include <zypp/base/LogTools.h>
14
15 #include <zypp/PluginScriptException.h>
16 #include <zypp/PluginScript.h>
17
18 using std::endl;
19
20 ///////////////////////////////////////////////////////////////////
21 namespace zypp
22 { /////////////////////////////////////////////////////////////////
23
24   PluginScriptException::PluginScriptException()
25     : Exception( "PluginScriptException" )
26   {}
27
28   PluginScriptException::PluginScriptException( const std::string & msg_r )
29     : Exception( msg_r )
30   {}
31
32   PluginScriptException::PluginScriptException( const std::string & msg_r, const std::string & hist_r )
33     : Exception( msg_r )
34   { addHistory( hist_r ); }
35
36   PluginScriptException::~PluginScriptException() throw()
37   {}
38
39   /////////////////////////////////////////////////////////////////
40 } // namespace zypp
41 ///////////////////////////////////////////////////////////////////