view native/PhantomOmni/HapticException.h @ 5:d66dd5880081

Added support for Falcon Haptic device and Tablet/Mouse as haptic device
author Fiore Martin <fiore@eecs.qmul.ac.uk>
date Tue, 10 Jul 2012 22:39:37 +0100
parents 9e67171477bc
children
line wrap: on
line source
#pragma once
#include <exception>

using namespace std;

/* This exception is thrown by the HapticManager if the initialization of the Haptic 
 * doesn't succeed. 
 */
class HapticException :	public exception {
public:
	HapticException(void);
	virtual ~HapticException(void);
	virtual const char* what() const throw();
};