RxError
public enum RxError
: Swift.Error
, CustomDebugStringConvertible
Generic Rx error codes.
-
Unknown error occurred.
Declaration
Swift
case unknown
-
Performing an action on disposed object.
Declaration
Swift
case disposed(object: AnyObject)
-
Arithmetic overflow error.
Declaration
Swift
case overflow
-
Argument out of range error.
Declaration
Swift
case argumentOutOfRange
-
Sequence doesn’t contain any elements.
Declaration
Swift
case noElements
-
Sequence contains more than one element.
Declaration
Swift
case moreThanOneElement
-
Timeout error.
Declaration
Swift
case timeout
-
A textual representation of
self
, suitable for debugging.Declaration
Swift
public var debugDescription: String { get }