Mercurial > dedupe
comparison PermissionException.hpp @ 9:b5943e4bf676
Fix up header includes.
Introduce outer catch.
Fix coding style.
Remove spurious debug output.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Wed, 22 Aug 2012 18:48:07 +0200 |
| parents | a3834af36579 |
| children |
comparison
equal
deleted
inserted
replaced
| 8:d7b384b4a834 | 9:b5943e4bf676 |
|---|---|
| 3 | 3 |
| 4 #include "IOException.hpp" | 4 #include "IOException.hpp" |
| 5 | 5 |
| 6 class PermissionException : public IOException { | 6 class PermissionException : public IOException { |
| 7 public: | 7 public: |
| 8 PermissionException(const QString& errorMsg) : IOException(errorMsg) {} | 8 PermissionException(const string_t& errorMsg) : IOException(errorMsg) {} |
| 9 | 9 |
| 10 }; | 10 }; |
| 11 | 11 |
| 12 #endif //PERMISSIONEXCEPTION_HPP | 12 #endif //PERMISSIONEXCEPTION_HPP |
