Git repository for mines3d founded, mines3d v1.0 imported.
[mines3d.git] / exceptions / OutOfBoundsException.h
blob0c3729778e9a6f1133943ea5787e3fd324edeb5a
1 /*
2 * File: OutOfBoundsException.h
3 * Author: Petr Kubiznak
4 */
6 #ifndef _OUTOFBOUNDSEXCEPTION_H
7 #define _OUTOFBOUNDSEXCEPTION_H
9 #include "GeneralException.h"
10 #include <iostream>
11 using namespace std;
13 class OutOfBoundsException : public GeneralException {
14 public:
15 OutOfBoundsException(string desc = "");
16 ~OutOfBoundsException();
17 private:
21 #endif /* _OUTOFBOUNDSEXCEPTION_H */