00001 /* $Id: OSErrorClass.h 4292 2011-09-21 05:47:18Z kmartin $ */ 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