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