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

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

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

import java.util.List;

public class FunctionCallException extends FaunaException {

    private List exceptions;

    public FunctionCallException(String message, int httpStatusCode, List position, List exceptions) {
        super(message, httpStatusCode, position);
        this.exceptions = exceptions;
    }

    public List getExceptions() {
        return exceptions;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy