00001 #ifndef __CONSTRUCTIONFAILEDEXCEPTION_H__
00002 #define __CONSTRUCTIONFAILEDEXCEPTION_H__
00003
00004 #ifndef DOXYGEN_IGNORE_TAG
00005
00026 #endif
00027
00028 #include "NEngine/Exception.h"
00029
00030 class ConstructionFailedException : public Exception
00031 {
00032
00033 public:
00034 ConstructionFailedException(const std::string& userMessage):Exception(std::string("Failed to create class '") + userMessage + std::string("'")) {}
00035 };
00036
00045 #endif