Class ArtifactException

    • Constructor Detail

      • ArtifactException

        public ArtifactException​(String message,
                                 Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - the detail message
        cause - the cause. A null value is permitted.
      • ArtifactException

        public ArtifactException​(String message)
        Constructs a new exception with the specified detail message.

        The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).

        Parameters:
        message - the detail message
      • ArtifactException

        public ArtifactException​(Throwable cause)
        Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
        Parameters:
        cause - the cause. A null value is permitted.