00001 #ifndef EXC_OUTOFBOUNDSEXCEPTION_H 00002 #define EXC_OUTOFBOUNDSEXCEPTION_H 00003 00004 #include "exception.h" 00005 00006 namespace afl 00007 { 00008 namespace exc 00009 { 00010 00016 class OutOfBoundsException : public Exception 00017 { 00018 00020 public: 00026 OutOfBoundsException( const std::string& message ); 00027 00028 00029 }; 00030 00031 } 00032 } 00033 00034 #endif // EXC_OUTOFBOUNDSEXCEPTION_H 00035