fiore@3: #pragma once fiore@3: #include fiore@3: fiore@3: using namespace std; fiore@3: fiore@3: /* This exception is thrown by the HapticManager if the initialization of the Haptic fiore@3: * doesn't succeed. fiore@3: */ fiore@3: class HapticException : public exception { fiore@3: public: fiore@3: HapticException(void); fiore@3: virtual ~HapticException(void); fiore@3: virtual const char* what() const throw(); fiore@3: };