libkcal Library API Documentation

exceptions.h

00001 /*
00002     This file is part of libkcal.
00003     Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
00004 
00005     This library is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Library General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or (at your option) any later version.
00009 
00010     This library is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Library General Public License for more details.
00014 
00015     You should have received a copy of the GNU Library General Public License
00016     along with this library; see the file COPYING.LIB.  If not, write to
00017     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00018     Boston, MA 02111-1307, USA.
00019 */
00020 
00021 #ifndef KCAL_EXCEPTIONS_H
00022 #define KCAL_EXCEPTIONS_H
00023 //
00024 // Exception classes of libkcal.
00025 //
00026 // We don't use actual C++ exceptions right now. These classes are currently
00027 // returned by an error function, but we can build upon them, when we start
00028 // to use C++ exceptions.
00029 
00030 #include <qstring.h>
00031 
00032 namespace KCal {
00033 
00038 class Exception {
00039   public:
00041     Exception(const QString &message=QString::null);
00042     virtual ~Exception();
00043 
00045     virtual QString message();
00046     
00047   protected:
00048     QString mMessage;
00049 };
00050 
00052 class ErrorFormat : public Exception {
00053   public:
00054     enum ErrorCodeFormat { LoadError, SaveError,
00055                            ParseErrorIcal, ParseErrorKcal,
00056                            NoCalendar,
00057                            CalVersion1,CalVersion2,
00058                            CalVersionUnknown,
00059                            Restriction };
00060   
00062     ErrorFormat(ErrorCodeFormat code,const QString &message = QString::null);
00063     
00065     QString message();
00067     ErrorCodeFormat errorCode();
00068     
00069   private:
00070     ErrorCodeFormat mCode;
00071 };
00072 
00073 }
00074 
00075 #endif
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.4.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Sat Oct 18 02:47:03 2003 by doxygen 1.3.4 written by Dimitri van Heesch, © 1997-2001