com.maxmind.minfraud.exception.AuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minfraud Show documentation
Show all versions of minfraud Show documentation
MaxMind minFraud Score and Insights API
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