comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:a3834af36579
1 #ifndef PERMISSIONEXCEPTION_HPP
2 #define PERMISSIONEXCEPTION_HPP
3
4 #include "IOException.hpp"
5
6 class PermissionException : public IOException {
7 public:
8 PermissionException(const QString& errorMsg) : IOException(errorMsg) {}
9
10 };
11
12 #endif //PERMISSIONEXCEPTION_HPP