You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
447 B

package com.alibaba.excel.exception;
7 years ago
/**
*
* @author jipengfei
*/
public class ExcelAnalysisException extends RuntimeException {
public ExcelAnalysisException() {}
7 years ago
public ExcelAnalysisException(String message) {
super(message);
}
public ExcelAnalysisException(String message, Throwable cause) {
super(message, cause);
}
public ExcelAnalysisException(Throwable cause) {
super(cause);
}
}