2 * File: OutOfBoundsException.h
3 * Author: Petr Kubiznak
6 #ifndef _OUTOFBOUNDSEXCEPTION_H
7 #define _OUTOFBOUNDSEXCEPTION_H
9 #include "GeneralException.h"
13 class OutOfBoundsException
: public GeneralException
{
15 OutOfBoundsException(string desc
= "");
16 ~OutOfBoundsException();
21 #endif /* _OUTOFBOUNDSEXCEPTION_H */