Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed May 14, 2024
1 parent 93cacb3 commit 513eb42
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ protected ExcelCheckedException(Exception e) {
protected ExcelCheckedException(String msg, Exception e) {
super(msg, e);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public StreamingWorkbookReader(Builder builder) {
* @throws OpenException if an error occurs while opening the file
* @throws ReadException if an error occurs while reading the file
* @throws ParseException if an error occurs while parsing the file
* @see #initWithCheckedExceptions(InputStream)
*/
public void init(InputStream is) throws OpenException, ReadException, ParseException {
try {
Expand All @@ -98,6 +99,7 @@ public void init(InputStream is) throws OpenException, ReadException, ParseExcep
* @param is the input stream to read from
* @throws IOException if an error occurs while opening the file
* @throws CheckedReadException if an error occurs while reading the file
* @since 4.3.0
*/
public void initWithCheckedExceptions(InputStream is) throws IOException, CheckedReadException {
try {
Expand All @@ -121,6 +123,8 @@ public void initWithCheckedExceptions(InputStream is) throws IOException, Checke
* @throws OpenException if an error occurs while opening the file
* @throws ReadException if an error occurs while reading the file
* @throws ParseException if an error occurs while parsing the file
* @see #initWithCheckedExceptions(File)
* @since 4.3.0
*/
public void init(File f) throws OpenException, ReadException, ParseException {
try {
Expand Down Expand Up @@ -154,6 +158,7 @@ public void init(File f) throws OpenException, ReadException, ParseException {
* @param f the file to read from
* @throws IOException if an error occurs while opening the file
* @throws CheckedReadException if an error occurs while reading the file
* @since 4.3.0
*/
public void initWithCheckedExceptions(File f) throws IOException, CheckedReadException {
try {
Expand Down

0 comments on commit 513eb42

Please sign in to comment.