ClassLoader.java (resolveClass0): Set cause for newly-created exception.
* java/lang/ClassLoader.java (resolveClass0): Set cause for newly-created exception. From-SVN: r57310
This commit is contained in:
@@ -432,17 +432,24 @@ public abstract class ClassLoader
|
||||
{
|
||||
synchronized (clazz)
|
||||
{
|
||||
try {
|
||||
linkClass0 (clazz);
|
||||
} catch (Throwable x) {
|
||||
markClassErrorState0 (clazz);
|
||||
try
|
||||
{
|
||||
linkClass0 (clazz);
|
||||
}
|
||||
catch (Throwable x)
|
||||
{
|
||||
markClassErrorState0 (clazz);
|
||||
|
||||
if (x instanceof Error)
|
||||
throw (Error)x;
|
||||
else
|
||||
throw new java.lang.InternalError
|
||||
("unexpected exception during linking: " + x);
|
||||
}
|
||||
if (x instanceof Error)
|
||||
throw (Error)x;
|
||||
else
|
||||
{
|
||||
InternalError e
|
||||
= new InternalError ("unexpected exception during linking");
|
||||
e.initCause (x);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user