view PermissionException.hpp @ 9:b5943e4bf676

Fix up header includes. Introduce outer catch. Fix coding style. Remove spurious debug output.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Wed, 22 Aug 2012 18:48:07 +0200
parents a3834af36579
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