object DynamoDBError extends Serializable
- Alphabetic
- By Inheritance
- DynamoDBError
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class AWSError(cause: DynamoDbException) extends Throwable with DynamoDBError with Product with Serializable
Encapsulates the underlying AWS SDK dynamodb error in
causewhich can be pattern matched egcase DynamoDBError.AWSError(_: ConditionalCheckFailedException) => ... - sealed trait BatchError extends Throwable with DynamoDBError
You need to consider this error if queries result in batching eg if you are using
DynamoDBQuery.forEachor manuallyZip'ing togetherDynamoDBQuery's or using utility functions that useDynamoDBQuery.forEach.You need to consider this error if queries result in batching eg if you are using
DynamoDBQuery.forEachor manuallyZip'ing togetherDynamoDBQuery's or using utility functions that useDynamoDBQuery.forEach. Note at the point that this error is raised automatic retries have already occurred. For a long running process typical handler actions would be to record the errors and to carry on processing. - sealed trait ItemError extends Throwable with DynamoDBError
- sealed trait TransactionError extends Throwable with DynamoDBError
You need to handle this error if you are using the transaction API ie
dynamoDBQuery.transactionordynamoDBQuery.safeTransaction
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object BatchError extends Serializable
- object ItemError extends Serializable
- object TransactionError extends Serializable