Class ConflictException

All Implemented Interfaces:
Serializable

public class ConflictException extends ServiceException
Thrown when a request cannot be performed due to the state of the content, as per the semantics of the HTTP 409 'Conflict' status code. For example, when an UPDATE request is made with a stale version number, or an attempt to manipulate trashed content.

Typically these operations can be retried successfully either by updating the information in the request to match the state of the content, or by first updating the state of the content.

See Also:
  • Constructor Details

    • ConflictException

      public ConflictException()
    • ConflictException

      public ConflictException(String message)
    • ConflictException

      public ConflictException(String message, Throwable cause)
    • ConflictException

      public ConflictException(String message, ValidationResult validationResult)