
com.microsoft.azure.cognitiveservices.vision.computervision.models.ComputerVisionOcrErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cognitiveservices-computervision Show documentation
Show all versions of azure-cognitiveservices-computervision Show documentation
This package contains Microsoft Cognitive Service Computer Vision SDK.
The newest version!
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.cognitiveservices.vision.computervision.models;
import com.microsoft.rest.RestException;
import okhttp3.ResponseBody;
import retrofit2.Response;
/**
* Exception thrown for an invalid response with ComputerVisionOcrError
* information.
*/
public class ComputerVisionOcrErrorException extends RestException {
/**
* Initializes a new instance of the ComputerVisionOcrErrorException class.
*
* @param message the exception message or the response content if a message is not available
* @param response the HTTP response
*/
public ComputerVisionOcrErrorException(final String message, final Response response) {
super(message, response);
}
/**
* Initializes a new instance of the ComputerVisionOcrErrorException class.
*
* @param message the exception message or the response content if a message is not available
* @param response the HTTP response
* @param body the deserialized response body
*/
public ComputerVisionOcrErrorException(final String message, final Response response, final ComputerVisionOcrError body) {
super(message, response, body);
}
@Override
public ComputerVisionOcrError body() {
return (ComputerVisionOcrError) super.body();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy