Mercurial > dedupe
view PermissionException.hpp @ 6:7ebdd2373ea4
Remove unused files.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Wed, 22 Aug 2012 00:42:25 +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
