Class ArtifactException

All Implemented Interfaces:
com.streambase.sb.util.LocatedItem, Serializable

public class ArtifactException extends StreamBaseException
Artifact exception.
Since:
10.2
See Also:
  • Constructor Details

    • 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.