mirror of https://github.com/alibaba/easyexcel
Jiaju Zhuang
3 years ago
5 changed files with 25 additions and 4 deletions
@ -0,0 +1,21 @@
|
||||
package com.alibaba.excel.exception; |
||||
|
||||
/** |
||||
* Excel Exception |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class ExcelException extends RuntimeException { |
||||
public ExcelException() {} |
||||
|
||||
public ExcelException(String message) { |
||||
super(message); |
||||
} |
||||
|
||||
public ExcelException(String message, Throwable cause) { |
||||
super(message, cause); |
||||
} |
||||
|
||||
public ExcelException(Throwable cause) { |
||||
super(cause); |
||||
} |
||||
} |
Loading…
Reference in new issue