view native/PhantomOmni/HapticException.h @ 3:9e67171477bc

PHANTOM Omni Heptic device release
author Fiore Martin <fiore@eecs.qmul.ac.uk>
date Wed, 25 Apr 2012 17:09:09 +0100
parents
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();
};