I'm using Processing 2, and have multiple tabs. The exception is being thrown via an Interface, but the stacktrace isn't even showing the interface, only the original PDE filename.
I can of course println statements to try and figure out where all is going wrong, but that's a pretty tedious process. Is there a better way to get the accurate place the exception is occurring?
I can of course println statements to try and figure out where all is going wrong, but that's a pretty tedious process. Is there a better way to get the accurate place the exception is occurring?
- caused by: java.lang.ClassCastException: com.leapmotion.leap.FingerList cannot be cast to java.util.List
at LeapTest$LeapDevice.getFingerVectors(LeapTest.java:134)
at LeapTest$LeapDevice.getPos(LeapTest.java:119)
at LeapTest.draw(LeapTest.java:41)
LeapTest is the original PDE file, LeapDevice is the interface where the exception is actually occurring.
1