forked from fanruan/easyexcel
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.
22 lines
447 B
22 lines
447 B
package com.alibaba.excel.exception; |
|
|
|
/** |
|
* |
|
* @author jipengfei |
|
*/ |
|
public class ExcelAnalysisException extends RuntimeException { |
|
|
|
public ExcelAnalysisException() {} |
|
|
|
public ExcelAnalysisException(String message) { |
|
super(message); |
|
} |
|
|
|
public ExcelAnalysisException(String message, Throwable cause) { |
|
super(message, cause); |
|
} |
|
|
|
public ExcelAnalysisException(Throwable cause) { |
|
super(cause); |
|
} |
|
}
|
|
|