Source: exception.h


Annotated List
Files
Globals
Hierarchy
Index
#ifndef EXCEPTION_H
#define EXCEPTION_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <QString.h>

namespace KDB {

class Exception {

public:
    /**
     * @internal
     * Builds an exception with the given description
     */
    Exception (const QString & description);

    QString descriprion() { return m_description; };

private:
    QString m_description;

};

class PluginException : public Exception {
};

class UnsupportedCapability: public PluginException {
};

class DataException : public Exception {
};

class ConversionException : public DataException {
};

#endif



Generated by: pradu@server.rete.casa on Fri Jul 28 15:15:55 2000, using kdoc 2.0a36.