Mercurial > hg > ccmieditor
annotate 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 |
rev | line source |
---|---|
fiore@3 | 1 #pragma once |
fiore@3 | 2 #include <exception> |
fiore@3 | 3 |
fiore@3 | 4 using namespace std; |
fiore@3 | 5 |
fiore@3 | 6 /* This exception is thrown by the HapticManager if the initialization of the Haptic |
fiore@3 | 7 * doesn't succeed. |
fiore@3 | 8 */ |
fiore@3 | 9 class HapticException : public exception { |
fiore@3 | 10 public: |
fiore@3 | 11 HapticException(void); |
fiore@3 | 12 virtual ~HapticException(void); |
fiore@3 | 13 virtual const char* what() const throw(); |
fiore@3 | 14 }; |