Class DIException

    • Constructor Summary

      Constructors 
      Constructor Description
      DIException()
      Default constructor with no cause message defined.
      DIException​(java.lang.String aMessage)
      DIException constructor that creates an exception with predefined cause message.
      DIException​(java.lang.String msg, java.lang.Throwable t)
      DIException constructor that creates an exception with predefined cause message and exception.
      DIException​(java.lang.Throwable t)
      DIException constructor that creates an exception with predefined cause exception.
    • 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

      • DIException

        public DIException()
        Default constructor with no cause message defined.
      • DIException

        public DIException​(java.lang.String aMessage)
        DIException constructor that creates an exception with predefined cause message.
        Parameters:
        aMessage - the cause message
      • DIException

        public DIException​(java.lang.Throwable t)
        DIException constructor that creates an exception with predefined cause exception.
        Parameters:
        t - the cause exception
      • DIException

        public DIException​(java.lang.String msg,
                           java.lang.Throwable t)
        DIException constructor that creates an exception with predefined cause message and exception.
        Parameters:
        msg - the cause message
        t - the cause exception