--- old/src/java.xml/share/classes/org/xml/sax/ext/LexicalHandler.java 2020-08-25 18:28:57.659632500 +0000 +++ new/src/java.xml/share/classes/org/xml/sax/ext/LexicalHandler.java 2020-08-25 18:28:57.308614535 +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 @@ -89,7 +89,7 @@ * external DTD subset, or null if none was declared. * (Note that this is not resolved against the document * base URI.) - * @exception SAXException The application may raise an + * @throws SAXException The application may raise an * exception. * @see #endDTD * @see #startEntity @@ -106,7 +106,7 @@ * DOCTYPE declaration; if the document has no DOCTYPE declaration, * this method will not be invoked.

* - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #startDTD */ public abstract void endDTD () @@ -157,7 +157,7 @@ * @param name The name of the entity. If it is a parameter * entity, the name will begin with '%', and if it is the * external DTD subset, it will be "[dtd]". - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #endEntity * @see org.xml.sax.ext.DeclHandler#internalEntityDecl * @see org.xml.sax.ext.DeclHandler#externalEntityDecl @@ -170,7 +170,7 @@ * Report the end of an entity. * * @param name The name of the entity that is ending. - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #startEntity */ public abstract void endEntity (String name) @@ -185,7 +185,7 @@ * characters} event; this event is intended only to report * the boundary.

* - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #endCDATA */ public abstract void startCDATA () @@ -195,7 +195,7 @@ /** * Report the end of a CDATA section. * - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. * @see #startCDATA */ public abstract void endCDATA () @@ -214,7 +214,7 @@ * @param ch An array holding the characters in the comment. * @param start The starting position in the array. * @param length The number of characters to use from the array. - * @exception SAXException The application may raise an exception. + * @throws SAXException The application may raise an exception. */ public abstract void comment (char ch[], int start, int length) throws SAXException;