Class DuplicateException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DuplicateDeploymentException

public class DuplicateException extends BaseException
Thrown when a duplicate resource already exists.
See Also:
  • Constructor Details

    • DuplicateException

      public DuplicateException()
      Creates a new instance.
    • DuplicateException

      public DuplicateException(String message)
      Creates a new instance with the given message.
      Parameters:
      message - the detail message
    • DuplicateException

      public DuplicateException(String message, Throwable cause)
      Creates a new instance with the given message and cause.
      Parameters:
      message - the detail message
      cause - the cause
    • DuplicateException

      public DuplicateException(Throwable cause)
      Creates a new instance with the given cause.
      Parameters:
      cause - the cause
    • DuplicateException

      public DuplicateException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Creates a new instance.
      Parameters:
      message - the detail message
      cause - the cause
      enableSuppression - whether suppression is enabled
      writableStackTrace - whether the stack trace is writable
  • Method Details