Hi,
Let's say I have a base class named 'Car'.
Then I extend it with 'Ford'.
If I remove Car from the classpath and
invoke findSystemClass( Ford ), I receive
a NoClassDefFoundError: Car
I'd expect this, but what I don't expect is that
when wrapped in a try / catch block, I still can't
catch this exception. Am I doing something silly here,
or is it normal behavior?
Thank you,
John
Kevin McMurtrie - 12 Jun 2005 23:18 GMT
> Hi,
>
[quoted text clipped - 12 lines]
>
> John
You likely have a linker reference to it. Does the exception actually
happen on the line number in the try block.
John Currier - 13 Jun 2005 20:42 GMT
In his description he refers to catching an exception. An Exception
isn't being thrown, an Error is.
John