Class HPSFRuntimeException

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Throwable getReason()
      Returns the Throwable that caused this exception to be thrown or null if there was no such Throwable.
      • 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

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

      • HPSFRuntimeException

        public HPSFRuntimeException​(java.lang.String msg)

        Creates a new HPSFRuntimeException with a message string.

        Parameters:
        msg - The message string.
      • HPSFRuntimeException

        public HPSFRuntimeException​(java.lang.Throwable reason)

        Creates a new HPSFRuntimeException with a reason.

        Parameters:
        reason - The reason, i.e. a throwable that indirectly caused this exception.
      • HPSFRuntimeException

        public HPSFRuntimeException​(java.lang.String msg,
                                    java.lang.Throwable reason)

        Creates a new HPSFRuntimeException with a message string and a reason.

        Parameters:
        msg - The message string.
        reason - The reason, i.e. a throwable that indirectly caused this exception.
    • Method Detail

      • getReason

        public java.lang.Throwable getReason()

        Returns the Throwable that caused this exception to be thrown or null if there was no such Throwable.

        Returns:
        The reason