Package io.reactivex.rxjava3.exceptions
Class UndeliverableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
io.reactivex.rxjava3.exceptions.UndeliverableException
- All Implemented Interfaces:
Serializable
Wrapper for Throwable errors that are sent to
RxJavaPlugins.onError
.
History: 2.0.6 - experimental; 2.1 - beta
- Since:
- 2.2
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUndeliverableException
(Throwable cause) Construct an instance by wrapping the given, non-null cause Throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
UndeliverableException
Construct an instance by wrapping the given, non-null cause Throwable.- Parameters:
cause
- the cause, not null
-