org.jxls.common.JxlsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls Show documentation
Show all versions of jxls Show documentation
Small library for Excel generation based on XLS templates
package org.jxls.common;
/**
* This is just a wrapper for non-runtime exceptions
* Created by Leonid Vysochyn on 19-Jul-15.
*/
public class JxlsException extends RuntimeException {
public JxlsException() {
}
public JxlsException(String message) {
super(message);
}
public JxlsException(String message, Throwable cause) {
super(message, cause);
}
public JxlsException(Throwable cause) {
super(cause);
}
public JxlsException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}