libzypp  10.5.0
ParseDefException.cc
Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                          ____ _   __ __ ___                          |
00003 |                         |__  / \ / / . \ . \                         |
00004 |                           / / \ V /|  _/  _/                         |
00005 |                          / /__ | | | | | |                           |
00006 |                         /_____||_| |_| |_|                           |
00007 |                                                                      |
00008 \---------------------------------------------------------------------*/
00012 #include "zypp/parser/xml/ParseDefException.h"
00013 
00015 namespace zypp
00016 { 
00017 
00018   namespace xml
00019   { 
00020 
00022     //
00023     //  METHOD NAME : ParseDefException::ParseDefException
00024     //  METHOD TYPE : Constructor
00025     //
00026     ParseDefException::ParseDefException( const std::string & what_r )
00027     : Exception( what_r )
00028     {}
00029 
00031     //
00032     //  METHOD NAME : ParseDefBuildException::ParseDefBuildException
00033     //  METHOD TYPE : Constructor
00034     //
00035     ParseDefBuildException::ParseDefBuildException( const std::string & what_r )
00036     : ParseDefException( what_r )
00037     {}
00038 
00040     //
00041     //  METHOD NAME : ParseDefValidateException::ParseDefValidateException
00042     //  METHOD TYPE : Constructor
00043     //
00044     ParseDefValidateException::ParseDefValidateException( const std::string & what_r )
00045     : ParseDefException( what_r )
00046     {}
00047 
00049     //
00050     //  METHOD NAME : ParseDefDataException::ParseDefDataException
00051     //  METHOD TYPE : Constructor
00052     //
00053     ParseDefDataException::ParseDefDataException( const std::string & what_r )
00054     : ParseDefException( what_r )
00055     {}
00056 
00058   } // namespace xml
00061 } // namespace zypp