final case class ModifyFailure[A <: ReplicatedData](key: Key[A], errorMessage: String, cause: Throwable, request: Option[Any]) extends UpdateFailure[A] with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- ModifyFailure
- Serializable
- Product
- Equals
- UpdateFailure
- UpdateResponse
- NoSerializationVerificationNeeded
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- val cause: Throwable
- val errorMessage: String
- def getRequest: [Any]
Java API
Java API
- Definition Classes
- UpdateResponse
- val key: Key[A]
- Definition Classes
- → UpdateResponse
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val request: [Any]
- Definition Classes
- → UpdateResponse
- def toString(): String
- Definition Classes
- ModifyFailure → AnyRef → Any
If the
modify
function of the Update throws an exception the reply message will be thisModifyFailure
message. The original exception is included ascause
.