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