00001 #ifndef _WARNING_H 00002 #define _WARNING_H 00003 00004 #include "Exception.h" 00005 00007 00011 class Warning : public Exception 00012 { 00013 public: 00018 Warning(const char* msg) : Exception(msg) {} 00019 }; 00020 00021 #endif