com.hn.poi.ExcelException Maven / Gradle / Ivy
package com.hn.poi;
/**
* 描述:
* excel解析异常
* @author fei
*/
public class ExcelException extends RuntimeException {
public ExcelException() {
}
public ExcelException(String message) {
super(message);
}
public ExcelException(String message, Throwable cause) {
super(message, cause);
}
public static ExcelException exception(String message){
return new ExcelException(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy