-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 6u14
-
Component/s: xml
-
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
-