Mercurial > dedupe
diff PermissionException.hpp @ 0:a3834af36579
Working with memory backend.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Mon, 20 Aug 2012 15:49:48 +0200 |
| parents | |
| children | b5943e4bf676 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PermissionException.hpp Mon Aug 20 15:49:48 2012 +0200 @@ -0,0 +1,12 @@ +#ifndef PERMISSIONEXCEPTION_HPP +#define PERMISSIONEXCEPTION_HPP + +#include "IOException.hpp" + +class PermissionException : public IOException { +public: + PermissionException(const QString& errorMsg) : IOException(errorMsg) {} + +}; + +#endif //PERMISSIONEXCEPTION_HPP
