On Thu, 3 Nov 2022 09:07:44 GMT, Matthias Baesken <[email protected]> wrote:
> This change adds constructors (String,Throwable) and (Throwable) to
> InvalidParameterException and uses them at a few places in the jdk coding.
These should probably have `@since` tags:
src/java.base/share/classes/java/security/InvalidParameterException.java line
68:
> 66: * @param msg the detail message.
> 67: * @param cause the cause.
> 68: */
Suggestion:
* @since 20
*/
src/java.base/share/classes/java/security/InvalidParameterException.java line
78:
> 76: *
> 77: * @param cause the cause.
> 78: */
Suggestion:
* @since 20
*/
-------------
PR: https://git.openjdk.org/jdk/pull/10966