Exception in thread "main" java.lang.NoClassDefFoundError
at $AllProbeAspect.aspectOf(Unknown Source)
at
com.verisign.common.properties.PropertyManager.getInstance(PropertyManag
er.java:81)
at com.verisign.jtaps.test.Test.calc(Test.java:19)
at com.verisign.jtaps.test.Test.main(Test.java:29)
Notice that there is no class name specified; when I trap all exceptions
in the debugger, what I see is a null error message, and the causation
member self-references the lexically enclosing exception instance, as if
somewhere someone did something evil like:
NoClassDefFoundError error = new NoClassDefFoundError();
error.initCause(error);
throw error;