graphql.ExceptionWhileDataFetching Maven / Gradle / Ivy
package graphql;
import graphql.execution.ResultPath;
import graphql.language.SourceLocation;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import static graphql.Assert.assertNotNull;
import static java.lang.String.format;
/**
* This graphql error will be used if a runtime exception is encountered while a data fetcher is invoked
*/
@PublicApi
public class ExceptionWhileDataFetching implements GraphQLError {
private final String message;
private final List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy