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

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

package com.faunadb.client.errors;

import java.util.List;

public class InvalidArgumentException extends FaunaException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy