CombinedLoadingError

data class CombinedLoadingError(val exceptions: List<Exception>)

Represent several errors (one or more) occurred during a network request.

Multiple errors can occur in a combined replica. See replica-algebra module for more details.

Constructors

Link copied to clipboard
fun CombinedLoadingError(exception: Exception)
Link copied to clipboard
fun CombinedLoadingError(exceptions: List<Exception>)

Properties

Link copied to clipboard
val exception: Exception

Returns some of the errors. Can be used when UI is not suitable to display multiple errors at the same time.

Link copied to clipboard
val exceptions: List<Exception>