-
Bug
-
Resolution: Fixed
-
P4
-
1.1.7
-
b02
-
sparc
-
solaris_2.6
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2025260 | 1.3.0 | J. Duke | P4 | Resolved | Fixed | kestrel |
JDK-2025259 | 1.2.2_002 | J. Duke | P4 | Resolved | Fixed | b02 |
JDK-2025258 | 1.2.1_002 | J. Duke | P4 | Resolved | Fixed | b02 |
JDK-2025257 | 1.1.8_001 | J. Duke | P4 | Resolved | Fixed | b01 |
While debugging an application that uses a custom class loader (JLoader) to load classes (Catcher and Thrower) it is discovered that exceptions thrown by Thrower are not caught in Catcher. If the application is run without the debugger the exceptions are processed correctly.
This is a priority 1 issue for the vendor - limits their ability to provide debugging with their product.
A test case to recreate the problem is attached.
** The test case has four classes:
**
** (1) BugMain (this class), which is the test driver.
**
** (2) JLoader, a cut-down form of the custom class loader.
**
** (3) Catcher, a class which is custom-loaded and whose constructor
** attempts to catch an exception thrown by the throwSomething()
** method on class Thrower. Note: it does not seem to matter
** whether the constructor or an ordinary method in the Catcher
** class is used. This reproduction uses the constructor for brevity.
**
** (4) Thrower, a class which is custom-loaded and whose throwSomething()
** method throws an exception. Note: it does not seem to matter what
** class of exception is thrown.
** Expected output, appears with java or java_g when -debug is not used.
**
** > java_g BugMain
** Warning: JIT compiler "symcjit" not found. Will use interpreter.
** Loading: Catcher.class
** Catcher()
** Loading: Thrower.class
** Thrower()
** --- try
** throwSomething()
** --- catch
** java.lang.Exception: the exception message
** at Thrower.throwSomething(Thrower.java:11)
** at Catcher.<init>(Catcher.java:10)
** at BugMain.main(BugMain.java:5)
** end Catcher()
**
** Erroneous output, appears with java_g when -debug is used.
**
** > java_g -debug BugMain
** Warning: JIT compiler "symcjit" not found. Will use interpreter.
** Agent password=52c49x
** Warning: JIT compiler "symcjit" not found. Will use interpreter.
** Loading: Catcher.class
** Catcher()
** Loading: Thrower.class
** Thrower()
** --- try
** throwSomething()
** *** after try !!! BUG BUG BUG !!!
** end Catcher()
This is a priority 1 issue for the vendor - limits their ability to provide debugging with their product.
A test case to recreate the problem is attached.
** The test case has four classes:
**
** (1) BugMain (this class), which is the test driver.
**
** (2) JLoader, a cut-down form of the custom class loader.
**
** (3) Catcher, a class which is custom-loaded and whose constructor
** attempts to catch an exception thrown by the throwSomething()
** method on class Thrower. Note: it does not seem to matter
** whether the constructor or an ordinary method in the Catcher
** class is used. This reproduction uses the constructor for brevity.
**
** (4) Thrower, a class which is custom-loaded and whose throwSomething()
** method throws an exception. Note: it does not seem to matter what
** class of exception is thrown.
** Expected output, appears with java or java_g when -debug is not used.
**
** > java_g BugMain
** Warning: JIT compiler "symcjit" not found. Will use interpreter.
** Loading: Catcher.class
** Catcher()
** Loading: Thrower.class
** Thrower()
** --- try
** throwSomething()
** --- catch
** java.lang.Exception: the exception message
** at Thrower.throwSomething(Thrower.java:11)
** at Catcher.<init>(Catcher.java:10)
** at BugMain.main(BugMain.java:5)
** end Catcher()
**
** Erroneous output, appears with java_g when -debug is used.
**
** > java_g -debug BugMain
** Warning: JIT compiler "symcjit" not found. Will use interpreter.
** Agent password=52c49x
** Warning: JIT compiler "symcjit" not found. Will use interpreter.
** Loading: Catcher.class
** Catcher()
** Loading: Thrower.class
** Thrower()
** --- try
** throwSomething()
** *** after try !!! BUG BUG BUG !!!
** end Catcher()
- backported by
-
JDK-2025257 Exception ignored in while debugging class loaded by custom loader
-
- Resolved
-
-
JDK-2025258 Exception ignored in while debugging class loaded by custom loader
-
- Resolved
-
-
JDK-2025259 Exception ignored in while debugging class loaded by custom loader
-
- Resolved
-
-
JDK-2025260 Exception ignored in while debugging class loaded by custom loader
-
- Resolved
-