Class ApplicationBaseException

    • Constructor Summary

      Constructors 
      Constructor Description
      ApplicationBaseException​(Message message)
      Standard constructor for ApplicationBaseException using a message object see Message for details.
      ApplicationBaseException​(Message message, java.lang.Throwable rootCause)
      Standard constructor for ApplicationBaseException using a message object see Message for details.
      ApplicationBaseException​(java.lang.String message)
      Standard constructor for ApplicationBaseException with the specified detail message.
      ApplicationBaseException​(java.lang.String message, java.lang.Throwable rootCause)
      Standard constructor for ApplicationBaseException using a simple message text.
    • 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

      • ApplicationBaseException

        public ApplicationBaseException​(java.lang.String message)
        Standard constructor for ApplicationBaseException with the specified detail message.
        Parameters:
        message - the detail message.
      • ApplicationBaseException

        public ApplicationBaseException​(java.lang.String message,
                                        java.lang.Throwable rootCause)
        Standard constructor for ApplicationBaseException using a simple message text.
        Parameters:
        message - message text.
        rootCause - exception which causes the exception
      • ApplicationBaseException

        public ApplicationBaseException​(Message message)
        Standard constructor for ApplicationBaseException using a message object see Message for details.
        Parameters:
        message - message which identifies the error message.
      • ApplicationBaseException

        public ApplicationBaseException​(Message message,
                                        java.lang.Throwable rootCause)
        Standard constructor for ApplicationBaseException using a message object see Message for details.
        Parameters:
        message - message object which identifies the error message.
        rootCause - exception which causes the exception