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

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

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

/**
 * Exception while authenticating.
 */
public class AuthenticationException extends EligibleException {

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

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

    private static final long serialVersionUID = 1L;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy