Class | Description |
---|---|
Exceptions |
Exception | Description |
---|---|
CompositeException |
An Exception that is a composite of one or more other Exceptions.
|
MissingBackpressureException |
MissingBackpressureException indicates that a Subscriber or operator attempted to apply reactive pull
backpressure to an Observable that does not implement it. |
OnErrorFailedException |
Used to re-throw errors thrown from
Observer.onError(Throwable) . |
OnErrorNotImplementedException |
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.
|