Class ExceptionUtils


  • @Deprecated
    public final class ExceptionUtils
    extends java.lang.Object
    Deprecated.
    (4.2) no longer used
    The home for utility methods that handle various exception-related tasks.
    Since:
    4.0
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static void initCause​(java.lang.Throwable throwable, java.lang.Throwable cause)
      Deprecated.
      If we're running on JDK 1.4 or later, initialize the cause for the given throwable.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • initCause

        public static void initCause​(java.lang.Throwable throwable,
                                     java.lang.Throwable cause)
        Deprecated.
        If we're running on JDK 1.4 or later, initialize the cause for the given throwable.
        Parameters:
        throwable - The throwable.
        cause - The cause of the throwable.