Mercurial > dedupe
view PermissionException.hpp @ 13:9463c0c22969
Refactor computeHash into separate function.
| author | Tom Fredrik Blenning Klaussen <bfg@sim.no> |
|---|---|
| date | Fri, 24 Aug 2012 22:57:19 +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
