mirror of https://github.com/alibaba/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
435 B
22 lines
435 B
7 years ago
|
package com.alibaba.excel.exception;
|
||
|
|
||
|
/**
|
||
|
* 生成Excel封装的异常
|
||
|
* @author jipengfei
|
||
|
*/
|
||
|
public class ExcelGenerateException extends RuntimeException {
|
||
|
|
||
|
|
||
|
public ExcelGenerateException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
|
||
|
public ExcelGenerateException(String message, Throwable cause) {
|
||
|
super(message, cause);
|
||
|
}
|
||
|
|
||
|
public ExcelGenerateException(Throwable cause) {
|
||
|
super(cause);
|
||
|
}
|
||
|
}
|