00001
00002
00003
00004
00005
00006
00007
00008
00012 #ifndef ZYPP_PARSER_TAGFILE_PARSEEXCEPTION_H
00013 #define ZYPP_PARSER_TAGFILE_PARSEEXCEPTION_H
00014
00015 #include <iosfwd>
00016 #include <string>
00017
00018 #include "zypp/base/Exception.h"
00019
00021 namespace zypp
00022 {
00023
00024 namespace parser
00025 {
00026
00027 namespace tagfile
00028 {
00029
00031
00032
00033
00035 class ParseException : public Exception
00036 {
00037 public:
00039 ParseException();
00041 ParseException( const std::string & msg_r );
00043 virtual ~ParseException() throw();
00044 protected:
00045 virtual std::ostream & dumpOn( std::ostream & str ) const;
00046 };
00048
00050 }
00053 }
00056 }
00058 #endif // ZYPP_PARSER_TAGFILE_PARSEEXCEPTION_H