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

com.microsoft.azure.servicebus.amqp.AmqpErrorCode Maven / Gradle / Ivy

Go to download

Java library for Azure Service Bus. Please note, a newer package com.azure:azure-messaging-servicebus for Azure Service Bus is available as of December 2020. While this package will continue to receive critical bug fixes, we strongly encourage you to upgrade. Read the migration guide at https://aka.ms/azsdk/java/migrate/sb for more details.

There is a newer version: 3.6.7
Show newest version
/*
 * Copyright (c) Microsoft. All rights reserved.
 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
 */
package com.microsoft.azure.servicebus.amqp;

import org.apache.qpid.proton.amqp.Symbol;

public final class AmqpErrorCode
{

	public static final Symbol NotFound = Symbol.getSymbol("amqp:not-found");
	public static final Symbol UnauthorizedAccess = Symbol.getSymbol("amqp:unauthorized-access");
	public static final Symbol ResourceLimitExceeded = Symbol.getSymbol("amqp:resource-limit-exceeded");
	public static final Symbol NotAllowed = Symbol.getSymbol("amqp:not-allowed");
	public static final Symbol InternalError = Symbol.getSymbol("amqp:internal-error");
	public static final Symbol IllegalState = Symbol.getSymbol("amqp:illegal-state");
	public static final Symbol NotImplemented = Symbol.getSymbol("amqp:not-implemented");

	// link errors
	public static final Symbol Stolen = Symbol.getSymbol("amqp:link:stolen");
	public static final Symbol PayloadSizeExceeded = Symbol.getSymbol("amqp:link:message-size-exceeded");
	public static final Symbol AmqpLinkDetachForced = Symbol.getSymbol("amqp:link:detach-forced");

	// connection errors
	public static final Symbol ConnectionForced = Symbol.getSymbol("amqp:connection:forced");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy