All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.firegloves.mempoi.exception.MempoiException Maven / Gradle / Ivy

Go to download

A library to simplify export from database to Excel files using Apache POI

There is a newer version: 1.10.1
Show newest version
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