Package org.elasticsearch.action.support
Class DefaultShardOperationFailedException
- java.lang.Object
-
- org.elasticsearch.action.support.DefaultShardOperationFailedException
-
- All Implemented Interfaces:
ShardOperationFailedException,Streamable,ToXContent
- Direct Known Subclasses:
IndicesShardStoresResponse.Failure
public class DefaultShardOperationFailedException extends java.lang.Object implements ShardOperationFailedException
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDefaultShardOperationFailedException()DefaultShardOperationFailedException(java.lang.String index, int shardId, java.lang.Throwable reason)DefaultShardOperationFailedException(ElasticsearchException e)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultShardOperationFailedExceptionfromXContent(XContentParser parser)java.lang.ThrowablegetCause()The cause of this failurejava.lang.Stringindex()The index the operation failed on.voidreadFrom(StreamInput in)Set this object's fields from a StreamInput.static DefaultShardOperationFailedExceptionreadShardOperationFailed(StreamInput in)java.lang.Stringreason()The reason of the failure.intshardId()The index the operation failed on.RestStatusstatus()The status of the failure.java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this object's fields to a StreamOutput.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.io.stream.Streamable
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
isFragment
-
-
-
-
Constructor Detail
-
DefaultShardOperationFailedException
protected DefaultShardOperationFailedException()
-
DefaultShardOperationFailedException
public DefaultShardOperationFailedException(ElasticsearchException e)
-
DefaultShardOperationFailedException
public DefaultShardOperationFailedException(java.lang.String index, int shardId, java.lang.Throwable reason)
-
-
Method Detail
-
index
public java.lang.String index()
Description copied from interface:ShardOperationFailedExceptionThe index the operation failed on. Might returnnullif it can't be derived.- Specified by:
indexin interfaceShardOperationFailedException
-
shardId
public int shardId()
Description copied from interface:ShardOperationFailedExceptionThe index the operation failed on. Might return-1if it can't be derived.- Specified by:
shardIdin interfaceShardOperationFailedException
-
reason
public java.lang.String reason()
Description copied from interface:ShardOperationFailedExceptionThe reason of the failure.- Specified by:
reasonin interfaceShardOperationFailedException
-
status
public RestStatus status()
Description copied from interface:ShardOperationFailedExceptionThe status of the failure.- Specified by:
statusin interfaceShardOperationFailedException
-
getCause
public java.lang.Throwable getCause()
Description copied from interface:ShardOperationFailedExceptionThe cause of this failure- Specified by:
getCausein interfaceShardOperationFailedException
-
readShardOperationFailed
public static DefaultShardOperationFailedException readShardOperationFailed(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
Description copied from interface:StreamableSet this object's fields from a StreamInput.- Specified by:
readFromin interfaceStreamable- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:StreamableWrite this object's fields to a StreamOutput.- Specified by:
writeToin interfaceStreamable- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public static DefaultShardOperationFailedException fromXContent(XContentParser parser)
-
-