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

com.maxmind.minfraud.exception.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 3.6.0-beta.1
Show newest version
package com.maxmind.minfraud.exception;

/**
 * This exception is thrown when there is an error authenticating.
 */
public final class AuthenticationException extends MinFraudException {
    /**
     * @param message A message explaining the cause of the error.
     */
    public AuthenticationException(String message) {
        super(message);
    }

    /**
     * @param message A message explaining the cause of the error.
     * @param e       The cause of the exception.
     */
    public AuthenticationException(String message, Throwable e) {
        super(message, e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy