it.firegloves.mempoi.exception.MempoiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mempoi Show documentation
Show all versions of mempoi Show documentation
A library to simplify export from database to Excel files using Apache POI
package it.firegloves.mempoi.exception;
import java.util.concurrent.CompletionException;
public class MempoiException extends CompletionException {
public MempoiException() {
}
public MempoiException(String message) {
super(message);
}
public MempoiException(String message, Throwable cause) {
super(message, cause);
}
public MempoiException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy