io.github.af19git5.exception.ExcelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-excel Show documentation
Show all versions of easy-excel Show documentation
Easy to do read or write excel.
The newest version!
package io.github.af19git5.exception;
/**
* Excel處理錯誤
*
* @author Jimmy Kang
*/
public class ExcelException extends Exception {
public ExcelException(String message) {
super(message);
}
public ExcelException(Exception e) {
super(e);
}
}