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
440 B
22 lines
440 B
package com.alibaba.excel.exception; |
|
|
|
/** |
|
* |
|
* @author Jiaju Zhuang |
|
*/ |
|
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); |
|
} |
|
}
|
|
|