
com.faunadb.client.errors.AuthenticationFailedException Maven / Gradle / Ivy
The newest version!
package com.faunadb.client.errors;
import java.util.List;
public class AuthenticationFailedException extends FaunaException {
public AuthenticationFailedException(final String message, final int httpStatusCode, final List position) {
super(message, httpStatusCode, position);
}
@Override
public CoreExceptionCodes code() {
return CoreExceptionCodes.AUTHENTICATION_FAILED;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy