view native/PhantomOmni/HapticException.h @ 6:1c5af356bb99

added 64 bit native narrator allow hapitic native dll to load only on 32 bit JVM refactored DiagramEditorApp for better inheritance fixed Java 7 bug: NullPointerException when typing minor bug fixes added splashscreen
author Fiore Martin <fiore@eecs.qmul.ac.uk>
date Mon, 17 Dec 2012 18:39:40 +0000
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();
};