object ManifestError extends Serializable
- Alphabetic
- By Inheritance
- ManifestError
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
final
case class
ApplicationError(underlying: Throwable, app: Application, runId: UUID) extends Throwable with ManifestError with Product with Serializable
Exception happened during item processing.
Exception happened during item processing. Not manifest error, technically
-
final
case class
Corrupted(reason: Corruption) extends Throwable with ManifestError with Product with Serializable
Corrupted state, unknown field, missing field etc.
Corrupted state, unknown field, missing field etc. Usually critical
-
sealed
trait
Corruption extends AnyRef
Auxiliary ADT to represent exact reason of failure; Usually impossible
-
final
case class
IoError(message: String) extends Throwable with ManifestError with Product with Serializable
Unreachable storage, timeout etc.
Unreachable storage, timeout etc. Usually recoverable error
-
final
case class
Locked(reason: NonEmptyList[Record], acquired: Option[UUID]) extends Throwable with ManifestError with Product with Serializable
Inconsistent state, such as holding lock.
Inconsistent state, such as holding lock. Recoverable, considered normal flow
- reason
records that don't have duality (e.g.
FailedwithoutResolved), meaning that they were not consumed and became a reason of stop- acquired
Processingwithidthat was added before second check due race condition. This "lock" is safe to delete
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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def invalidContent(message: String): ManifestError
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit val manifestErrorShow: Show[ManifestError]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def parseError(message: String): ManifestError
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object Corruption