Pārlūkot izejas kodu

fixes issue #209 (NPE in Exception)

tags/rel_3_24_0_rc
chibash pirms 5 gadiem
vecāks
revīzija
a3d1aa2513

+ 2
- 1
src/main/javassist/util/proxy/DefineClassHelper.java Parādīt failu

@@ -246,7 +246,8 @@ public class DefineClassHelper
throw e;
}
catch (ClassFormatError e) {
throw new CannotCompileException(e.getCause());
Throwable t = e.getCause();
throw new CannotCompileException(t == null ? e : t);
}
catch (Exception e) {
throw new CannotCompileException(e);

Notiek ielāde…
Atcelt
Saglabāt