Interface AmqpError
public interface AmqpError
List of
Symbol constants that provide the defined AMQP Error space.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SymbolData could not be decoded.static final SymbolThe peer cannot send a frame because the smallest encoding of the performative with the currently valid values would be too large to fit within a frame of the agreed maximum frame size.static final SymbolThe peer sent a frame that is not permitted in the current state.static final SymbolAn internal error occurred.static final SymbolAn invalid field was passed in a frame body, and the operation could not proceed.static final SymbolThe peer tried to use a frame in a manner that is inconsistent with the semantics defined in the specification.static final SymbolA peer attempted to work with a remote entity that does not exist.static final SymbolThe peer tried to use functionality that is not implemented in its partner.static final SymbolThe client made a request that was not allowed because some precondition failed.static final SymbolA server entity the client is working with has been deleted.static final SymbolA peer exceeded its resource allocation.static final SymbolThe client attempted to work with a server entity to which it has no access because another client is working with it.static final SymbolA peer attempted to work with a remote entity to which it has no access due to security settings.
-
Field Details
-
INTERNAL_ERROR
An internal error occurred. Operator intervention might be necessary to resume normal operation. -
NOT_FOUND
A peer attempted to work with a remote entity that does not exist. -
UNAUTHORIZED_ACCESS
A peer attempted to work with a remote entity to which it has no access due to security settings. -
DECODE_ERROR
Data could not be decoded. -
RESOURCE_LIMIT_EXCEEDED
A peer exceeded its resource allocation. -
NOT_ALLOWED
The peer tried to use a frame in a manner that is inconsistent with the semantics defined in the specification. -
INVALID_FIELD
An invalid field was passed in a frame body, and the operation could not proceed. -
NOT_IMPLEMENTED
The peer tried to use functionality that is not implemented in its partner. -
RESOURCE_LOCKED
The client attempted to work with a server entity to which it has no access because another client is working with it. -
PRECONDITION_FAILED
The client made a request that was not allowed because some precondition failed. -
RESOURCE_DELETED
A server entity the client is working with has been deleted. -
ILLEGAL_STATE
The peer sent a frame that is not permitted in the current state. -
FRAME_SIZE_TOO_SMALL
The peer cannot send a frame because the smallest encoding of the performative with the currently valid values would be too large to fit within a frame of the agreed maximum frame size. When transferring a message the message data can be sent in multiple transfer frames thereby avoiding this error. Similarly when attaching a link with a large unsettled map the endpoint MAY make use of the incomplete-unsettled flag to avoid the need for overly large frames.
-