Back to Rxswift

RxError

docs/Enums/RxError.html

6.10.21.3 KB
Original Source

RxError

public enum RxError:
    Swift.Error,
    CustomDebugStringConvertible

Generic Rx error codes.

`

                unknown
                `

Unknown error occurred.

Declaration

Swift

case unknown

`

                disposed(object:)
                `

Performing an action on disposed object.

Declaration

Swift

case disposed(object: AnyObject)

`

                overflow
                `

Arithmetic overflow error.

Declaration

Swift

case overflow

`

                argumentOutOfRange
                `

Argument out of range error.

Declaration

Swift

case argumentOutOfRange

`

                noElements
                `

Sequence doesn’t contain any elements.

Declaration

Swift

case noElements

`

                moreThanOneElement
                `

Sequence contains more than one element.

Declaration

Swift

case moreThanOneElement

`

                timeout
                `

Timeout error.

Declaration

Swift

case timeout

`

                debugDescription
                `

A textual representation of self, suitable for debugging.

Declaration

Swift

var debugDescription: String { get }