view PermissionException.hpp @ 21:3bcdb8bb6914

Huffman representations.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Wed, 05 Sep 2012 21:54:53 +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