Class ResourceExistsException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.lang.RuntimeException
 - 
- com.azure.android.core.exception.AzureException
 - 
- com.azure.android.core.http.exception.HttpResponseException
 - 
- com.azure.android.core.http.exception.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 com.azure.android.core.http.exception.HttpResponseException
getResponse, getValue 
 - 
 
 - 
 
- 
- 
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 availableresponse- 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 availableresponse- the HTTP responsevalue- 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 availableresponse- the HTTP responsecause- the Throwable which caused the creation of this ResourceExistsException
 
 - 
 
 -