Class TransactionOperationFailed
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.couchbase.transactions.error.external.TransactionOperationFailed
-
- All Implemented Interfaces:
java.io.Serializable
@Volatile public class TransactionOperationFailed extends java.lang.RuntimeException
This operation (such as a replace, get or insert) either failed or ambiguously succeeded.The details of the failure are opaque, as the application is not expected to take action on this failure. The application should not catch errors from operations.
All methods on this class are for internal use only.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TransactionOperationFailed.FinalErrorToRaise
-
Constructor Summary
Constructors Constructor Description TransactionOperationFailed​(AttemptContextReactive ctx, ErrorClasses causingErrorClass, boolean autoRollbackAttempt, boolean retryTransaction, java.lang.Throwable cause, TransactionOperationFailed.FinalErrorToRaise toRaise)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
autoRollbackAttempt()
ErrorClasses
causingErrorClass()
boolean
retryTransaction()
TransactionOperationFailed.FinalErrorToRaise
toRaise()
java.lang.String
toString()
-
-
-
Constructor Detail
-
TransactionOperationFailed
public TransactionOperationFailed​(@Nullable AttemptContextReactive ctx, ErrorClasses causingErrorClass, boolean autoRollbackAttempt, boolean retryTransaction, java.lang.Throwable cause, TransactionOperationFailed.FinalErrorToRaise toRaise)
-
-
Method Detail
-
causingErrorClass
@Internal public ErrorClasses causingErrorClass()
-
autoRollbackAttempt
@Internal public boolean autoRollbackAttempt()
-
retryTransaction
@Internal public boolean retryTransaction()
-
toRaise
@Internal public TransactionOperationFailed.FinalErrorToRaise toRaise()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Throwable
-
-