@@ -74,6 +74,7 @@ public StreamingWorkbookReader(Builder builder) {
7474 * @throws OpenException if an error occurs while opening the file
7575 * @throws ReadException if an error occurs while reading the file
7676 * @throws ParseException if an error occurs while parsing the file
77+ * @see #initWithCheckedExceptions(InputStream)
7778 */
7879 public void init (InputStream is ) throws OpenException , ReadException , ParseException {
7980 try {
@@ -98,6 +99,7 @@ public void init(InputStream is) throws OpenException, ReadException, ParseExcep
9899 * @param is the input stream to read from
99100 * @throws IOException if an error occurs while opening the file
100101 * @throws CheckedReadException if an error occurs while reading the file
102+ * @since 4.3.0
101103 */
102104 public void initWithCheckedExceptions (InputStream is ) throws IOException , CheckedReadException {
103105 try {
@@ -121,6 +123,8 @@ public void initWithCheckedExceptions(InputStream is) throws IOException, Checke
121123 * @throws OpenException if an error occurs while opening the file
122124 * @throws ReadException if an error occurs while reading the file
123125 * @throws ParseException if an error occurs while parsing the file
126+ * @see #initWithCheckedExceptions(File)
127+ * @since 4.3.0
124128 */
125129 public void init (File f ) throws OpenException , ReadException , ParseException {
126130 try {
@@ -154,6 +158,7 @@ public void init(File f) throws OpenException, ReadException, ParseException {
154158 * @param f the file to read from
155159 * @throws IOException if an error occurs while opening the file
156160 * @throws CheckedReadException if an error occurs while reading the file
161+ * @since 4.3.0
157162 */
158163 public void initWithCheckedExceptions (File f ) throws IOException , CheckedReadException {
159164 try {
0 commit comments