-
Bug
-
Resolution: Fixed
-
P1
-
1.0
-
1.0
-
generic
-
solaris_2.6
-
Verified
Running JavaTest. Whoa, very big crash. Turns out it's from LinkLoopException's test run, where neither its superclass' test nor its sibling's test failed, becuase they had null constructors.
So,
LinkLoopException needs a LinkLoopException() constructor
Turns out in Java you only get the null constructor for free if you don't define any other constructors. I didn't know that before today. For more on this, see "The Java Programming Language" page 35, or JLS 8.6.7 (page 180).
So,
LinkLoopException needs a LinkLoopException() constructor
Turns out in Java you only get the null constructor for free if you don't define any other constructors. I didn't know that before today. For more on this, see "The Java Programming Language" page 35, or JLS 8.6.7 (page 180).
- relates to
-
JDK-4086495 NamingException.appendRemainingName(Name) does not check for null parameter
-
- Closed
-
-
JDK-4087335 NoSuchAttributeException needs a NoSuchAttributeException() constructor
-
- Closed
-