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

io.github.longyg.export.exception.ExportException Maven / Gradle / Ivy

There is a newer version: 1.1.29-test
Show newest version
package io.github.longyg.export.exception;

/**
 * @author longyg
 */
public class ExportException extends Exception {
    public ExportException(Throwable e) {
        super(e);
    }

    public ExportException(String msg, Throwable e) {
        super(msg, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy