Class ResourceExistsException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ResourceExistsException
    extends HttpResponseException
    The exception thrown when HTTP request tried to create an already existing resource with status code of 4XX, typically 412 conflict.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ResourceExistsException​(java.lang.String message, HttpResponse response)
      Initializes a new instance of the ResourceExistsException class.
      ResourceExistsException​(java.lang.String message, HttpResponse response, java.lang.Object value)
      Initializes a new instance of the ResourceExistsException class.
      ResourceExistsException​(java.lang.String message, HttpResponse response, java.lang.Throwable cause)
      Initializes a new instance of the ResourceExistsException class.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ResourceExistsException

        public ResourceExistsException​(java.lang.String message,
                                       HttpResponse response)
        Initializes a new instance of the ResourceExistsException class.
        Parameters:
        message - the exception message or the response content if a message is not available
        response - the HTTP response
      • ResourceExistsException

        public ResourceExistsException​(java.lang.String message,
                                       HttpResponse response,
                                       java.lang.Object value)
        Initializes a new instance of the ResourceExistsException class.
        Parameters:
        message - the exception message or the response content if a message is not available
        response - the HTTP response
        value - the deserialized response value
      • ResourceExistsException

        public ResourceExistsException​(java.lang.String message,
                                       HttpResponse response,
                                       java.lang.Throwable cause)
        Initializes a new instance of the ResourceExistsException class.
        Parameters:
        message - the exception message or the response content if a message is not available
        response - the HTTP response
        cause - the Throwable which caused the creation of this ResourceExistsException