00001 #ifndef EXC_ILLEGALEXCEPTION_H 00002 #define EXC_ILLEGALEXCEPTION_H 00003 00004 #include "exception.h" 00005 00006 namespace afl 00007 { 00008 namespace exc 00009 { 00010 00016 class IllegalOperationException : public Exception 00017 { 00019 public: 00025 IllegalOperationException( const std::string& message ); 00026 }; 00027 } 00028 } 00029 00030 #endif // EXC_ILLEGALOPERATIONEXCEPTION_H 00031