view PermissionException.hpp @ 15:199fc63c60c1

Increase buffersize for filehash computing.
author Tom Fredrik Blenning Klaussen <bfg@sim.no>
date Sat, 25 Aug 2012 01:42:13 +0200
parents b5943e4bf676
children
line wrap: on
line source

#ifndef PERMISSIONEXCEPTION_HPP
#define PERMISSIONEXCEPTION_HPP

#include "IOException.hpp"

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

};

#endif //PERMISSIONEXCEPTION_HPP