Class ConflictException

All Implemented Interfaces:
Serializable, Response

public class ConflictException extends ResourceException
An exception that is thrown during a operation on a resource when such an operation would result in a conflict. For example: when a patch conflicts with the object state. For MVCC version required/failed failures use those specific exceptions instead,
See Also:
  • Constructor Details

    • ConflictException

      public ConflictException()
      Constructs a new exception with null as its detail message.
    • ConflictException

      public ConflictException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - The detail message.
    • ConflictException

      public ConflictException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message.
      cause - The exception which caused this exception to be thrown.
    • ConflictException

      public ConflictException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The exception which caused this exception to be thrown.