--- old/src/java.xml/share/classes/org/xml/sax/ext/DeclHandler.java 2020-08-25 18:28:56.098552605 +0000 +++ new/src/java.xml/share/classes/org/xml/sax/ext/DeclHandler.java 2020-08-25 18:28:55.748534691 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 2020, 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 @@ -74,7 +74,7 @@ * * @param name The element type name. * @param model The content model as a normalized string. - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. */ public abstract void elementDecl (String name, String model) throws SAXException; @@ -103,7 +103,7 @@ * none of these applies. * @param value A string representing the attribute's default value, * or null if there is none. - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. */ public abstract void attributeDecl (String eName, String aName, @@ -123,7 +123,7 @@ * @param name The name of the entity. If it is a parameter * entity, the name will begin with '%'. * @param value The replacement text of the entity. - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #externalEntityDecl * @see org.xml.sax.DTDHandler#unparsedEntityDecl */ @@ -145,7 +145,7 @@ * @param publicId The entity's public identifier, or null if none * was given. * @param systemId The entity's system identifier. - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #internalEntityDecl * @see org.xml.sax.DTDHandler#unparsedEntityDecl */