AboutForm.ui: About dialog for mines3d v2.
[mines3d.git] / exceptions / AccessForbiddenException.h
blob859c01549fa2d7f62ede95e69a1e61b081d274bc
1 /*
2 * File: AccessForbiddenException.h
3 * Author: Petr Kubiznak
4 */
6 #ifndef _ACCESSFORBIDDENEXCEPTION_H
7 #define _ACCESSFORBIDDENEXCEPTION_H
9 #include "GeneralException.h"
10 #include <iostream>
11 using namespace std;
13 class AccessForbiddenException : public GeneralException {
14 public:
15 AccessForbiddenException(string desc = "");
16 ~AccessForbiddenException();
17 private:
21 #endif /* _ACCESSFORBIDDENEXCEPTION_H */