Give this method here:
public SomeClass(Throwable stackTrace) {
super();
this.stackTrace = stackTrace;
}
How can I find out what class type stacktrace originally was before being passed in?
|
Give this method here:
How can I find out what class type |
|||
or
|
|||
|
|
|
You make this determination by handling exceptions as explicitly as possible. That includes not ever, EVER, catching |
|||
|
|
stackTraceis still the original type - it's just that your code block refers to it by a parent class – matt b Jul 28 '11 at 14:16