Give a simple reference to a Throwable object. I want to just find out what the original class where this was thrown. I no longer am inside this class so all I have is a Throwable object that was passed in from somewhere.
Give a simple reference to a Throwable object. I want to just find out
Share
Use the
GetStackTraceproperty ofThrowableto retreivegetClassName().http://download.oracle.com/javase/1.4.2/docs/api/java/lang/StackTraceElement.html
This will print all classes involved.