00001 /* $Id: OSErrorClass.h 4263 2011-09-09 20:19:26Z Gassmann $ */ 00015 #ifndef ERRORCLASS_H 00016 #define ERRORCLASS_H 00017 00018 #include <string> 00019 00031 class ErrorClass 00032 { 00033 public: 00034 00038 ErrorClass( std::string errormsg_); 00039 00042 std::string errormsg; 00043 00044 }; 00045 #endif