RepoException.cc

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                          ____ _   __ __ ___                          |
00003 |                         |__  / \ / / . \ . \                         |
00004 |                           / / \ V /|  _/  _/                         |
00005 |                          / /__ | | | | | |                           |
00006 |                         /_____||_| |_| |_|                           |
00007 |                                                                      |
00008 \---------------------------------------------------------------------*/
00012 #include <iostream>
00013 //#include "zypp/base/Logger.h"
00014 #include "zypp/repo/RepoException.h"
00015 
00016 using std::endl;
00017 
00019 namespace zypp
00020 { 
00021 
00022   namespace repo
00023   { 
00024  
00025     RepoException::RepoException()
00026     : Exception( "Repo exception" )
00027     {}
00028 
00029     RepoException::RepoException( const std::string & msg_r )
00030     : Exception( msg_r )
00031     {}
00032 
00033     RepoNotCachedException::RepoNotCachedException()
00034     : RepoException( "Repository not Cached" )
00035     {}
00036 
00037     RepoNotCachedException::RepoNotCachedException( const std::string & msg_r )
00038     : RepoException( msg_r )
00039     {}
00040 
00041 
00042     std::ostream & RepoException::dumpOn( std::ostream & str ) const
00043     {
00044       return Exception::dumpOn( str );
00045     }
00046     
00048   } // namespace repo
00051 } // namespace zypp

Generated on Tue Sep 25 19:23:05 2007 for libzypp by  doxygen 1.5.3