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

com.github.dreamroute.excel.helper.exception.ExcelHelperException Maven / Gradle / Ivy

There is a newer version: 2.0.4-RELEASE
Show newest version
package com.github.dreamroute.excel.helper.exception;

public class ExcelHelperException extends RuntimeException {

    /**
     * 
     */
    private static final long serialVersionUID = 5738373981580752355L;

    public ExcelHelperException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy