/**
|
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
*/
|
package com.ruoyi.common.core.excel;
|
|
/**
|
* Excel Exception
|
* @author ThinkGem
|
*/
|
public class ExcelException extends RuntimeException {
|
|
private static final long serialVersionUID = 1L;
|
|
public ExcelException() {
|
super();
|
}
|
|
public ExcelException(String message) {
|
super(message);
|
}
|
|
public ExcelException(Throwable cause) {
|
super(cause);
|
}
|
|
public ExcelException(String message, Throwable cause) {
|
super(message, cause);
|
}
|
}
|