| java.lang.Object | ||||
| ↳ | java.lang.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.lang.RuntimeException | |||
| ↳ | io.reactivex.exceptions.OnErrorNotImplementedException | |||
Represents an exception used to signal to the RxJavaPlugins.onError() that a
 callback-based subscribe() method on a base reactive type didn't specify
 an onError handler.
 
History: 2.0.6 - experimental
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| OnErrorNotImplementedException(String message, Throwable e) Customizes the  Throwablewith a custom message and wraps it before it
 is signalled to theRxJavaPlugins.onError()handler asOnErrorNotImplementedException. | |||||||||||
| OnErrorNotImplementedException(Throwable e) Wraps the  Throwablebefore it
 is signalled to theRxJavaPlugins.onError()handler asOnErrorNotImplementedException. | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  java.lang.Throwable | |||||||||||
|  From class
  java.lang.Object | |||||||||||
Customizes the 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 Throwableto signal | 
|---|---|
| e | the Throwableto signal; if null, a NullPointerException is constructed | 
Wraps the Throwable before it
 is signalled to the RxJavaPlugins.onError()
 handler as OnErrorNotImplementedException.
| e | the Throwableto signal; if null, a NullPointerException is constructed | 
|---|