Class ErrorCause
- java.lang.Object
-
- org.opensearch.client.opensearch._types.ErrorCause
-
- All Implemented Interfaces:
JsonpSerializable
@JsonpDeserializable public class ErrorCause extends java.lang.Object implements JsonpSerializable
Cause and details about a request failure. This class defines the properties common to all error types. Additional details are also provided, that depend on the error type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classErrorCause.BuilderBuilder forErrorCause.
-
Field Summary
Fields Modifier and Type Field Description static JsonpDeserializer<ErrorCause>_DESERIALIZERJson deserializer forErrorCause
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ErrorCausecausedBy()API name:caused_byjava.util.Map<java.lang.String,JsonData>metadata()Additional details about the errorstatic ErrorCauseof(java.util.function.Function<ErrorCause.Builder,ObjectBuilder<ErrorCause>> fn)java.lang.Stringreason()Required - A human-readable explanation of the error, in englishjava.util.List<ErrorCause>rootCause()API name:root_causevoidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)protected static voidsetupErrorCauseDeserializer(ObjectDeserializer<ErrorCause.Builder> op)java.lang.StringstackTrace()The server stack trace.java.util.List<ErrorCause>suppressed()API name:suppressedjava.lang.Stringtype()Required - The type of error
-
-
-
Field Detail
-
_DESERIALIZER
public static final JsonpDeserializer<ErrorCause> _DESERIALIZER
Json deserializer forErrorCause
-
-
Method Detail
-
of
public static ErrorCause of(java.util.function.Function<ErrorCause.Builder,ObjectBuilder<ErrorCause>> fn)
-
metadata
public final java.util.Map<java.lang.String,JsonData> metadata()
Additional details about the error
-
type
public final java.lang.String type()
Required - The type of errorAPI name:
type
-
reason
public final java.lang.String reason()
Required - A human-readable explanation of the error, in englishAPI name:
reason
-
stackTrace
@Nullable public final java.lang.String stackTrace()
The server stack trace. Present only if theerror_trace=trueparameter was sent with the request.API name:
stack_trace
-
causedBy
@Nullable public final ErrorCause causedBy()
API name:caused_by
-
rootCause
public final java.util.List<ErrorCause> rootCause()
API name:root_cause
-
suppressed
public final java.util.List<ErrorCause> suppressed()
API name:suppressed
-
serialize
public void serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this object to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
serializeInternal
protected void serializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
-
setupErrorCauseDeserializer
protected static void setupErrorCauseDeserializer(ObjectDeserializer<ErrorCause.Builder> op)
-
-