/usr/include/akonadi/exception.h is in kdepimlibs5-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | /*
Copyright (c) 2009 Volker Krause <vkrause@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#ifndef AKONADI_EXCEPTION_H
#define AKONADI_EXCEPTION_H
#include "akonadi_export.h"
#include <QtCore/QByteArray>
#include <exception>
class QString;
namespace Akonadi {
/**
Base class for exceptions used by the Akonadi library.
*/
class AKONADI_EXPORT Exception : public std::exception //krazy:exclude=dpointer
{
public:
/**
Creates a new exception with the error message @p what.
*/
Exception( const char *what ) throw();
/**
Creates a new exception with the error message @p what.
*/
Exception( const QByteArray &what ) throw();
/**
Creates a new exception with the error message @p what.
*/
Exception( const QString &what ) throw();
/**
Copy constructor.
*/
Exception( const Exception &other ) throw();
/**
Destructor.
*/
virtual ~Exception() throw();
/**
Returns the error message associated with this exception.
*/
const char* what() const throw();
/**
Returns the type of this exception.
*/
virtual QByteArray type() const throw(); // ### Akonadi 2: return const char*
private:
class Private;
Private * d;
};
#define AKONADI_EXCEPTION_MAKE_TRIVIAL_INSTANCE( classname ) \
class AKONADI_EXPORT classname : public Akonadi::Exception \
{ \
public: \
classname ( const char *what ) throw() : Akonadi::Exception( what ) {} \
classname ( const QByteArray &what ) throw() : Akonadi::Exception( what ) {} \
classname ( const QString &what ) throw() : Akonadi::Exception( what ) {} \
~classname() throw(); \
QByteArray type() const throw(); \
}
AKONADI_EXCEPTION_MAKE_TRIVIAL_INSTANCE( PayloadException );
#undef AKONADI_EXCEPTION_MAKE_TRIVIAL_INSTANCE
}
#endif
|