< prev index next >

src/java.xml/share/classes/org/xml/sax/Parser.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * 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
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -72,11 +72,11 @@
      * and warnings; if they cannot support the requested locale,
      * however, they must throw a SAX exception.  Applications may
      * not request a locale change in the middle of a parse.</p>
      *
      * @param locale A Java Locale object.
-     * @exception org.xml.sax.SAXException Throws an exception
+     * @throws org.xml.sax.SAXException Throws an exception
      *            (using the previous or default locale) if the
      *            requested locale is not supported.
      * @see org.xml.sax.SAXException
      * @see org.xml.sax.SAXParseException
      */

@@ -174,13 +174,13 @@
      * application may reuse the same Parser object, possibly with a
      * different input source.</p>
      *
      * @param source The input source for the top-level of the
      *        XML document.
-     * @exception org.xml.sax.SAXException Any SAX exception, possibly
+     * @throws org.xml.sax.SAXException Any SAX exception, possibly
      *            wrapping another exception.
-     * @exception java.io.IOException An IO exception from the parser,
+     * @throws java.io.IOException An IO exception from the parser,
      *            possibly from a byte stream or character stream
      *            supplied by the application.
      * @see org.xml.sax.InputSource
      * @see #parse(java.lang.String)
      * @see #setEntityResolver

@@ -205,13 +205,13 @@
      *
      * <p>If the system identifier is a URL, it must be fully resolved
      * by the application before it is passed to the parser.</p>
      *
      * @param systemId The system identifier (URI).
-     * @exception org.xml.sax.SAXException Any SAX exception, possibly
+     * @throws org.xml.sax.SAXException Any SAX exception, possibly
      *            wrapping another exception.
-     * @exception java.io.IOException An IO exception from the parser,
+     * @throws java.io.IOException An IO exception from the parser,
      *            possibly from a byte stream or character stream
      *            supplied by the application.
      * @see #parse(org.xml.sax.InputSource)
      */
     public abstract void parse (String systemId)
< prev index next >