me.excel.tools.exporter.ExcelExportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-excel-tools Show documentation
Show all versions of java-excel-tools Show documentation
powerful and convenient excel tools
The newest version!
package me.excel.tools.exporter;
/**
* Created by hanwen on 16/1/7.
*/
public class ExcelExportException extends RuntimeException {
public ExcelExportException() {
super();
}
public ExcelExportException(String message) {
super(message);
}
public ExcelExportException(String message, Throwable cause) {
super(message, cause);
}
public ExcelExportException(Throwable cause) {
super(cause);
}
protected ExcelExportException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy