Package io.fria.lilo.error
Class LiloGraphQLError
- java.lang.Object
-
- io.fria.lilo.error.LiloGraphQLError
-
- All Implemented Interfaces:
graphql.GraphQLError,Serializable
public class LiloGraphQLError extends Object implements graphql.GraphQLError
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LiloGraphQLError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable graphql.ErrorClassificationgetErrorType()@Nullable Map<String,Object>getExtensions()@Nullable List<graphql.language.SourceLocation>getLocations()@NotNull StringgetMessage()@Nullable List<Object>getPath()voidsetErrorType(@Nullable graphql.ErrorType errorType)voidsetExtensions(@Nullable Map<String,Object> extensions)voidsetLocations(@Nullable List<ErrorSourceLocation> locations)voidsetMessage(@NotNull String message)voidsetPath(@Nullable List<Object> path)
-
-
-
Method Detail
-
getErrorType
@Nullable public @Nullable graphql.ErrorClassification getErrorType()
- Specified by:
getErrorTypein interfacegraphql.GraphQLError
-
setErrorType
public void setErrorType(@Nullable @Nullable graphql.ErrorType errorType)
-
getLocations
@Nullable public @Nullable List<graphql.language.SourceLocation> getLocations()
- Specified by:
getLocationsin interfacegraphql.GraphQLError
-
getExtensions
@Nullable public @Nullable Map<String,Object> getExtensions()
- Specified by:
getExtensionsin interfacegraphql.GraphQLError
-
setLocations
public void setLocations(@Nullable @Nullable List<ErrorSourceLocation> locations)
-
getMessage
@NotNull public @NotNull String getMessage()
- Specified by:
getMessagein interfacegraphql.GraphQLError
-
setMessage
public void setMessage(@NotNull @NotNull String message)
-
getPath
@Nullable public @Nullable List<Object> getPath()
- Specified by:
getPathin interfacegraphql.GraphQLError
-
-