00001 /* $Id: OSErrorClass.h 2698 2009-06-09 04:14:07Z kmartin $ */ 00017 #ifndef ERRORCLASS_H 00018 #define ERRORCLASS_H 00019 00020 #include <string> 00021 00033 class ErrorClass{ 00034 public: 00035 00039 ErrorClass( std::string errormsg_); 00040 00043 std::string errormsg; 00044 00045 }; 00046 #endif