Class ResourceNotFoundException
- 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.ResourceNotFoundException
 
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class ResourceNotFoundException extends HttpResponseException
An error response, typically triggered by a 412 response (for update) or 404 (for get/post)- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ResourceNotFoundException(java.lang.String message, HttpResponse response)Initializes a new instance of the ResourceNotFoundException class.ResourceNotFoundException(java.lang.String message, HttpResponse response, java.lang.Object value)Initializes a new instance of the ResourceNotFoundException class.ResourceNotFoundException(java.lang.String message, HttpResponse response, java.lang.Throwable cause)Initializes a new instance of the ResourceNotFoundException class. 
- 
Method Summary
- 
Methods inherited from class com.azure.android.core.http.exception.HttpResponseException
getResponse, getValue 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ResourceNotFoundException
public ResourceNotFoundException(java.lang.String message, HttpResponse response)Initializes a new instance of the ResourceNotFoundException class.- Parameters:
 message- the exception message or the response content if a message is not availableresponse- the HTTP response
 
- 
ResourceNotFoundException
public ResourceNotFoundException(java.lang.String message, HttpResponse response, java.lang.Object value)Initializes a new instance of the ResourceNotFoundException class.- Parameters:
 message- the exception message or the response content if a message is not availableresponse- the HTTP responsevalue- the deserialized response value
 
- 
ResourceNotFoundException
public ResourceNotFoundException(java.lang.String message, HttpResponse response, java.lang.Throwable cause)Initializes a new instance of the ResourceNotFoundException 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 ResourceNotFoundException
 
 - 
 
 -