@@ -74,6 +74,7 @@ public StreamingWorkbookReader(Builder builder) {
74
74
* @throws OpenException if an error occurs while opening the file
75
75
* @throws ReadException if an error occurs while reading the file
76
76
* @throws ParseException if an error occurs while parsing the file
77
+ * @see #initWithCheckedExceptions(InputStream)
77
78
*/
78
79
public void init (InputStream is ) throws OpenException , ReadException , ParseException {
79
80
try {
@@ -98,6 +99,7 @@ public void init(InputStream is) throws OpenException, ReadException, ParseExcep
98
99
* @param is the input stream to read from
99
100
* @throws IOException if an error occurs while opening the file
100
101
* @throws CheckedReadException if an error occurs while reading the file
102
+ * @since 4.3.0
101
103
*/
102
104
public void initWithCheckedExceptions (InputStream is ) throws IOException , CheckedReadException {
103
105
try {
@@ -121,6 +123,8 @@ public void initWithCheckedExceptions(InputStream is) throws IOException, Checke
121
123
* @throws OpenException if an error occurs while opening the file
122
124
* @throws ReadException if an error occurs while reading the file
123
125
* @throws ParseException if an error occurs while parsing the file
126
+ * @see #initWithCheckedExceptions(File)
127
+ * @since 4.3.0
124
128
*/
125
129
public void init (File f ) throws OpenException , ReadException , ParseException {
126
130
try {
@@ -154,6 +158,7 @@ public void init(File f) throws OpenException, ReadException, ParseException {
154
158
* @param f the file to read from
155
159
* @throws IOException if an error occurs while opening the file
156
160
* @throws CheckedReadException if an error occurs while reading the file
161
+ * @since 4.3.0
157
162
*/
158
163
public void initWithCheckedExceptions (File f ) throws IOException , CheckedReadException {
159
164
try {
0 commit comments