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

io.github.xinshepherd.excel.core.ExcelException Maven / Gradle / Ivy

The newest version!
package io.github.xinshepherd.excel.core;

/**
 * @author Fuxin
 * @since 1.1.0
 */
public class ExcelException extends RuntimeException {

    public ExcelException() {
    }

    public ExcelException(String message) {
        super(message);
    }

    public ExcelException(String message, Throwable cause) {
        super(message, cause);
    }

    public ExcelException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy