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

org.jxls.common.JxlsException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.jxls.common;

/**
 * This is just a wrapper for non-runtime exceptions
 * Created by Leonid Vysochyn on 19-Jul-15.
 */
public class JxlsException extends RuntimeException {
    public JxlsException() {
    }

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

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

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

    public JxlsException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy