com.github.dreamroute.excel.helper.exception.ExcelHelperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-helper Show documentation
Show all versions of excel-helper Show documentation
excel export base on apache poi 3.17
package com.github.dreamroute.excel.helper.exception;
public class ExcelHelperException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 5738373981580752355L;
public ExcelHelperException() {
super();
}
public ExcelHelperException(String message) {
super(message);
}
public ExcelHelperException(String message, Throwable cause) {
super(message, cause);
}
public ExcelHelperException(Throwable cause) {
super(cause);
}
}