-
Bug
-
Resolution: Fixed
-
P3
-
6u14
-
h1199
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2207318 | 7 | Joe Wang | P3 | Closed | Fixed | b112 |
The FactoryConfigurationError class takes Exception in the constructor, but it doesn't use the exception chaining mechanism of JDK1.4. It should have the following method added:
public Throwable getCause() {
return exception;
}
... so that printing the exception will result in printing the nested exception.
public Throwable getCause() {
return exception;
}
... so that printing the exception will result in printing the nested exception.
- backported by
-
JDK-2207318 FactoryConfigurationError is not chaining the exception properly
- Closed