00001 #ifndef __INPUTNOTFOUNDEXCEPTION_H__
00002 #define __INPUTNOTFOUNDEXCEPTION_H__
00003
00004 #ifndef DOXYGEN_IGNORE_TAG
00005
00026 #endif
00027
00028 #include "NEngine/Exception.h"
00029
00030 class InputNotFoundException : public Exception
00031 {
00032 public:
00033 InputNotFoundException(const std::string& userMessage):Exception(std::string("Input not found: '") + userMessage + std::string("'")) {}
00034 };
00035
00044 #endif