< prev index next >

src/java.base/share/classes/java/security/spec/ECParameterSpec.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) 2003, 2013, 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) 2003, 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
*** 49,61 **** * @param curve the elliptic curve which this parameter * defines. * @param g the generator which is also known as the base point. * @param n the order of the generator {@code g}. * @param h the cofactor. ! * @exception NullPointerException if {@code curve}, * {@code g}, or {@code n} is null. ! * @exception IllegalArgumentException if {@code n} * or {@code h} is not positive. */ public ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h) { if (curve == null) { --- 49,61 ---- * @param curve the elliptic curve which this parameter * defines. * @param g the generator which is also known as the base point. * @param n the order of the generator {@code g}. * @param h the cofactor. ! * @throws NullPointerException if {@code curve}, * {@code g}, or {@code n} is null. ! * @throws IllegalArgumentException if {@code n} * or {@code h} is not positive. */ public ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h) { if (curve == null) {
< prev index next >