See: Description
Class | Description |
---|---|
Exceptions |
Utility class with methods to wrap checked exceptions and
manage fatal and regular exception delivery.
|
Exception | Description |
---|---|
AssemblyStackTraceException |
A RuntimeException that is stackless but holds onto a textual
stacktrace from tracking the assembly location of operators.
|
CompositeException |
Represents an exception that is a composite of one or more other exceptions.
|
MissingBackpressureException |
Represents an exception that indicates that a Subscriber or operator attempted to apply reactive pull
backpressure to an Observable that does not implement it.
|
OnCompletedFailedException |
Represents an exception used to re-throw errors thrown from
Observer.onCompleted() . |
OnErrorFailedException |
Represents an exception used to re-throw errors thrown from
Observer.onError(Throwable) . |
OnErrorNotImplementedException |
Represents an exception used to re-throw
Observer.onError(Throwable) when an implementation doesn't
exist. |
OnErrorThrowable |
Represents a
Throwable that an Observable might notify its subscribers of, but that then can
be handled by an operator that is designed to recover from or react appropriately to such an error. |
OnErrorThrowable.OnNextValue |
Represents an exception that was encountered while trying to emit an item from an Observable, and
tries to preserve that item for future use and/or reporting.
|
UnsubscribeFailedException |
Represents an exception used to re-throw errors thrown from
Subscriber.unsubscribe() . |