Package rx.exceptions

Class OnErrorFailedException

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • OnErrorFailedException

        public 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.
        Parameters:
        message - the message to assign to the Throwable to re-throw
        e - the Throwable to re-throw; if null, a NullPointerException is constructed
      • OnErrorFailedException

        public OnErrorFailedException​(java.lang.Throwable e)
        Wraps the Throwable before it is to be re-thrown as an OnErrorFailedException.
        Parameters:
        e - the Throwable to re-throw; if null, a NullPointerException is constructed