view PermissionException.hpp @ 2:2833b7f8884a

Sql backend is working. Need to get more speed on comparisson.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Tue, 21 Aug 2012 14:25:33 +0200
parents a3834af36579
children b5943e4bf676
line wrap: on
line source

#ifndef PERMISSIONEXCEPTION_HPP
#define PERMISSIONEXCEPTION_HPP

#include "IOException.hpp"

class PermissionException : public IOException {
public:
  PermissionException(const QString& errorMsg) : IOException(errorMsg) {}

};

#endif //PERMISSIONEXCEPTION_HPP