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

br.com.cefis.exception.CefisException Maven / Gradle / Ivy

There is a newer version: 0.0.2
Show newest version
package br.com.cefis.exception;

public class CefisException extends RuntimeException {

    public CefisException() {
    }

    public CefisException(final String message) {
        super(message);
    }

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

    public CefisException(final Throwable cause) {
        super(cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy