RxError

public enum RxError
    : ErrorType
    , CustomDebugStringConvertible

Generic Rx error codes.

  • Unknown error occured.

    Declaration

    Swift

    case Unknown
  • Performing an action on disposed object.

    Declaration

    Swift

    case Disposed(object: AnyObject)
  • Aritmetic 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