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

com.eligible.exception.EligibleException Maven / Gradle / Ivy

There is a newer version: 1.13.13
Show newest version
package com.eligible.exception;

/**
 * Eligible base exception class.
 */
public abstract class EligibleException extends Exception {

    /**
     * Create Eligible Exception.
     *
     * @param message the detail message.
     */
    public EligibleException(String message) {
        super(message);
    }

    /**
     * Create Eligible Exception.
     *
     * @param message the detail message.
     * @param e root cause.
     */
    public EligibleException(String message, Throwable e) {
        super(message, e);
    }

    private static final long serialVersionUID = 1L;
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy