public final class OnErrorNotImplementedException
extends java.lang.RuntimeException
RxJavaPlugins.onError() that a
callback-based subscribe() method on a base reactive type didn't specify
an onError handler.| Constructor and Description |
|---|
OnErrorNotImplementedException(java.lang.String message,
java.lang.Throwable e)
Customizes the
Throwable with a custom message and wraps it before it
is signalled to the RxJavaPlugins.onError() handler as OnErrorNotImplementedException. |
OnErrorNotImplementedException(java.lang.Throwable e)
Wraps the
Throwable before it
is signalled to the RxJavaPlugins.onError()
handler as OnErrorNotImplementedException. |
public OnErrorNotImplementedException(java.lang.String message,
java.lang.Throwable e)
Throwable with a custom message and wraps it before it
is signalled to the RxJavaPlugins.onError() handler as OnErrorNotImplementedException.message - the message to assign to the Throwable to signale - the Throwable to signal; if null, a NullPointerException is constructedpublic OnErrorNotImplementedException(java.lang.Throwable e)
Throwable before it
is signalled to the RxJavaPlugins.onError()
handler as OnErrorNotImplementedException.e - the Throwable to signal; if null, a NullPointerException is constructed