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

com.faunadb.client.errors.InvalidTokenException Maven / Gradle / Ivy

The newest version!
package com.faunadb.client.errors;

import java.util.List;

public class InvalidTokenException extends FaunaException {

    public InvalidTokenException(String message, int httpStatusCode, List position) {
        super(message, httpStatusCode, position);
    }

    @Override
    public CoreExceptionCodes code() {
        return CoreExceptionCodes.INVALID_TOKEN;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy