Class DomainException

    • Constructor Summary

      Constructors 
      Constructor Description
      DomainException​(java.lang.String message)
      Creates a new DomainException object with the given message.
      DomainException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new DomainException object using the given message and 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

      • DomainException

        public DomainException​(java.lang.String message)
        Creates a new DomainException object with the given message.
        Parameters:
        message - the reason for this DomainException
      • DomainException

        public DomainException​(java.lang.String message,
                               java.lang.Throwable cause)
        Creates a new DomainException object using the given message and cause exception.
        Parameters:
        message - The reason for this DomainException.
        cause - the Throwable that caused this DomainException.