mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 05:38:52 +08:00
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:
parent
cc7ab9b79c
commit
b5f4221e51
@ -1,3 +1,8 @@
|
||||
2002-09-19 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/lang/ClassLoader.java (resolveClass0): Set cause for
|
||||
newly-created exception.
|
||||
|
||||
2002-09-18 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/util/regex/Matcher.java, java/util/regex/Pattern.java,
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user