view PermissionException.hpp @ 4:f489b0c9bf99

Refactored to allow commandline tools to use DataController.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Tue, 21 Aug 2012 15:27:29 +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