00001 #ifndef MICROEXCEPTION_H 00002 #define MICROEXCEPTION_H 00003 00004 class MicroException 00005 { 00006 private: 00007 char message[600]; 00008 00009 public: 00010 MicroException(); 00011 MicroException(char *aMessage); 00012 MicroException(const char *aMessage); 00013 char *getMessage(); 00014 }; 00015 #endif //MICROEXCEPTION_H 00016