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.
23 lines
439 B
23 lines
439 B
6 years ago
|
package com.alibaba.excel.exception;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
*/
|
||
|
public class ExcelCommonException extends RuntimeException {
|
||
|
|
||
|
public ExcelCommonException() {}
|
||
|
|
||
|
public ExcelCommonException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
|
||
|
public ExcelCommonException(String message, Throwable cause) {
|
||
|
super(message, cause);
|
||
|
}
|
||
|
|
||
|
public ExcelCommonException(Throwable cause) {
|
||
|
super(cause);
|
||
|
}
|
||
|
}
|