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

org.rapidgraphql.client.exceptions.GraphQLError Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package org.rapidgraphql.client.exceptions;

import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;

import java.util.List;
import java.util.Map;

@Value
@Builder
@Jacksonized
public class GraphQLError {
    @Value
    @Builder
    @Jacksonized
    public static class SourceLocation {
        int line;
        int column;
        String sourceName;
    };
    String message;
    List locations;
    String errorType;
    List path;
    Map extensions;
}