public class OnErrorFailedException
extends java.lang.RuntimeException
Observer.onError(Throwable).
| Constructor and Description |
|---|
OnErrorFailedException(java.lang.String message,
java.lang.Throwable e)
Customizes the
Throwable with a custom message and wraps it before it is to be re-thrown as an
OnErrorFailedException. |
OnErrorFailedException(java.lang.Throwable e)
Wraps the
Throwable before it is to be re-thrown as an OnErrorFailedException. |
public OnErrorFailedException(java.lang.String message,
java.lang.Throwable e)
Throwable with a custom message and wraps it before it is to be re-thrown as an
OnErrorFailedException.message - the message to assign to the Throwable to re-throwe - the Throwable to re-throw; if null, a NullPointerException is constructedpublic OnErrorFailedException(java.lang.Throwable e)
Throwable before it is to be re-thrown as an OnErrorFailedException.e - the Throwable to re-throw; if null, a NullPointerException is constructed