--- old/src/java.xml/share/classes/org/xml/sax/HandlerBase.java 2020-08-25 18:28:51.308307444 +0000 +++ new/src/java.xml/share/classes/org/xml/sax/HandlerBase.java 2020-08-25 18:28:51.001291731 +0000 @@ -59,7 +59,7 @@ implements EntityResolver, DTDHandler, DocumentHandler, ErrorHandler { /** - * Constructs a {@code HandlerBase}. + * Creates a {@code HandlerBase}. */ public HandlerBase() {} @@ -82,7 +82,7 @@ * document. * @return The new input source, or null to require the * default behaviour. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.EntityResolver#resolveEntity */ @@ -170,7 +170,7 @@ * of a document (such as allocating the root node of a tree or * creating an output file).

* - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#startDocument */ @@ -189,7 +189,7 @@ * of a document (such as finalising a tree or closing an output * file).

* - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#endDocument */ @@ -210,7 +210,7 @@ * * @param name The element type name. * @param attributes The specified or defaulted attributes. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#startElement */ @@ -230,7 +230,7 @@ * output to a file).

* * @param name the element name - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#endElement */ @@ -253,7 +253,7 @@ * @param start The start position in the character array. * @param length The number of characters to use from the * character array. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#characters */ @@ -276,7 +276,7 @@ * @param start The start position in the character array. * @param length The number of characters to use from the * character array. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#ignorableWhitespace */ @@ -298,7 +298,7 @@ * @param target The processing instruction target. * @param data The processing instruction data, or null if * none is supplied. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#processingInstruction */ @@ -324,7 +324,7 @@ * printing it to the console.

* * @param e The warning information encoded as an exception. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ErrorHandler#warning * @see org.xml.sax.SAXParseException @@ -345,7 +345,7 @@ * printing it to the console.

* * @param e The warning information encoded as an exception. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ErrorHandler#warning * @see org.xml.sax.SAXParseException @@ -369,7 +369,7 @@ * the parser may no longer report parsing events.

* * @param e The error information encoded as an exception. - * @exception org.xml.sax.SAXException Any SAX exception, possibly + * @throws org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ErrorHandler#fatalError * @see org.xml.sax.SAXParseException