src/java.base/share/classes/java/io/FilterReader.java

Print this page

        

@@ -67,10 +67,11 @@
 
     /**
      * Reads characters into a portion of an array.
      *
      * @exception  IOException  If an I/O error occurs
+     * @exception  IndexOutOfBoundsException {@inheritDoc}
      */
     public int read(char cbuf[], int off, int len) throws IOException {
         return in.read(cbuf, off, len);
     }