< prev index next >

src/java.base/share/classes/java/security/AlgorithmParameterGenerator.java

Print this page
rev 56290 : 8230648: Replace @exception tag with @throws in java.base
Summary: Minor coding style update of javadoc tag in any file in java.base
Reviewed-by: prappo, lancea

*** 1,7 **** /* ! * Copyright (c) 1997, 2017, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2019, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 332,342 **** * {@code SecureRandom}, a system-provided source of randomness is * used.) * * @param genParamSpec the set of algorithm-specific parameter generation values. * ! * @exception InvalidAlgorithmParameterException if the given parameter * generation values are inappropriate for this parameter generator. */ public final void init(AlgorithmParameterSpec genParamSpec) throws InvalidAlgorithmParameterException { paramGenSpi.engineInit(genParamSpec, new SecureRandom()); --- 332,342 ---- * {@code SecureRandom}, a system-provided source of randomness is * used.) * * @param genParamSpec the set of algorithm-specific parameter generation values. * ! * @throws InvalidAlgorithmParameterException if the given parameter * generation values are inappropriate for this parameter generator. */ public final void init(AlgorithmParameterSpec genParamSpec) throws InvalidAlgorithmParameterException { paramGenSpi.engineInit(genParamSpec, new SecureRandom());
*** 347,357 **** * parameter generation values. * * @param genParamSpec the set of algorithm-specific parameter generation values. * @param random the source of randomness. * ! * @exception InvalidAlgorithmParameterException if the given parameter * generation values are inappropriate for this parameter generator. */ public final void init(AlgorithmParameterSpec genParamSpec, SecureRandom random) throws InvalidAlgorithmParameterException { --- 347,357 ---- * parameter generation values. * * @param genParamSpec the set of algorithm-specific parameter generation values. * @param random the source of randomness. * ! * @throws InvalidAlgorithmParameterException if the given parameter * generation values are inappropriate for this parameter generator. */ public final void init(AlgorithmParameterSpec genParamSpec, SecureRandom random) throws InvalidAlgorithmParameterException {
< prev index next >