All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.cosmos.implementation.InternalServerErrorException Maven / Gradle / Ivy

Go to download

This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API

There is a newer version: 4.61.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation;

import com.azure.cosmos.BridgeInternal;
import com.azure.cosmos.CosmosException;
import com.azure.cosmos.implementation.directconnectivity.HttpUtils;
import com.azure.cosmos.implementation.http.HttpHeaders;

import java.net.URI;
import java.util.Map;

/**
 * This exception is thrown when DocumentServiceRequest contains x-ms-documentdb-partitionkeyrangeid
 * header and such range id doesn't exist.
 * 

* No retries should be made in this case, as either split or merge might have happened and query/readfeed * must take appropriate actions. */ public class InternalServerErrorException extends CosmosException { InternalServerErrorException() { this(RMResources.InternalServerError); } /** * Instantiates a new Internal server error exception. * * @param cosmosError the cosmos error * @param lsn the lsn * @param partitionKeyRangeId the partition key range id * @param responseHeaders the response headers */ public InternalServerErrorException(CosmosError cosmosError, long lsn, String partitionKeyRangeId, Map responseHeaders) { super(HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, cosmosError, responseHeaders); BridgeInternal.setLSN(this, lsn); BridgeInternal.setPartitionKeyRangeId(this, partitionKeyRangeId); } /** * Instantiates a new Internal server error exception. * * @param message the message */ public InternalServerErrorException(String message) { this(message, null, (Map) null, null); } InternalServerErrorException(String message, Exception innerException) { this(message, innerException, (HttpHeaders) null, (String) null); } InternalServerErrorException(Exception innerException) { this(RMResources.InternalServerError, innerException, (HttpHeaders) null, (String) null); } /** * Instantiates a new Internal server error exception. * * @param message the message * @param headers the headers * @param requestUri the request uri */ public InternalServerErrorException(String message, HttpHeaders headers, URI requestUri) { super(message, null, HttpUtils.asMap(headers), HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, requestUri != null ? requestUri.toString() : null); } InternalServerErrorException(String message, HttpHeaders headers, String requestUriString) { super(message, null, HttpUtils.asMap(headers), HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, requestUriString); } InternalServerErrorException(String message, Exception innerException, HttpHeaders headers, URI requestUri) { super(message, innerException, HttpUtils.asMap(headers), HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, requestUri != null ? requestUri.toString() : null); } InternalServerErrorException(String message, Exception innerException, HttpHeaders headers, String requestUriString) { super(message, innerException, HttpUtils.asMap(headers), HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, requestUriString); } /** * Instantiates a new Internal server error exception. * * @param message the message * @param innerException the inner exception * @param headers the headers * @param requestUriString the request uri string */ public InternalServerErrorException(String message, Exception innerException, Map headers, String requestUriString) { super(message, innerException, headers, HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, requestUriString); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy