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

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

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos;

import com.azure.cosmos.implementation.HttpConstants;
import com.azure.cosmos.implementation.RMResources;
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 CosmosClientException { InternalServerErrorException() { this(RMResources.InternalServerError); } 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); } 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); } 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); } public InternalServerErrorException(String message, Exception innerException, Map headers, String requestUriString) { super(message, innerException, headers, HttpConstants.StatusCodes.INTERNAL_SERVER_ERROR, requestUriString); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy