8284851: Update javax.crypto files to use proper javadoc for mentioned classes

Reviewed-by: weijun, valeriep
This commit is contained in:
Mark Powers 2022-07-07 23:20:58 +00:00 committed by Valerie Peng
parent 8cdead0c94
commit f804f2ce8e
92 changed files with 2142 additions and 2010 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -26,7 +26,7 @@
package java.security;
/**
* A runtime exception for Provider exceptions (such as
* A runtime exception for {@code Provider} exceptions (such as
* misconfiguration errors or unrecoverable internal errors),
* which may be subclassed by Providers to
* throw specialized, provider-specific runtime errors.
@ -40,8 +40,8 @@ public class ProviderException extends RuntimeException {
private static final long serialVersionUID = 5256023526693665674L;
/**
* Constructs a ProviderException with no detail message. A
* detail message is a String that describes this particular
* Constructs a {@code ProviderException} with no detail message. A
* detail message is a {@code String} that describes this particular
* exception.
*/
public ProviderException() {
@ -49,8 +49,8 @@ public class ProviderException extends RuntimeException {
}
/**
* Constructs a ProviderException with the specified detail
* message. A detail message is a String that describes this
* Constructs a {@code ProviderException} with the specified detail
* message. A detail message is a {@code String} that describes this
* particular exception.
*
* @param s the detail message.