Files
OpenSceneGraph/src/osgPlugins/ive/Exception.h
2003-05-24 14:42:00 +00:00

20 lines
238 B
C++

#ifndef IVE_EXCEPTION
#define IVE_EXCEPTION 1
#include <string>
namespace ive{
class Exception{
public:
Exception(std::string error);
~Exception();
std::string getError(){return _error;};
private:
std::string _error;
};
}
#endif