00001 /* @version $Revision: 1328 $ * @modifiedby $Author: jacquem $ * @lastmodified $Date: 2011-10-03 17:04:17 +0200 (Mon, 03 Oct 2011) $ */ 00002 #ifndef MICROEXCEPTION_H 00003 #define MICROEXCEPTION_H 00004 00005 class MicroException { 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