Interface AmqpError


  • public interface AmqpError
    List of Symbol constants that provide the defined AMQP Error space.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static Symbol DECODE_ERROR
      Data could not be decoded.
      static Symbol 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.
      static Symbol ILLEGAL_STATE
      The peer sent a frame that is not permitted in the current state.
      static Symbol INTERNAL_ERROR
      An internal error occurred.
      static Symbol INVALID_FIELD
      An invalid field was passed in a frame body, and the operation could not proceed.
      static Symbol NOT_ALLOWED
      The peer tried to use a frame in a manner that is inconsistent with the semantics defined in the specification.
      static Symbol NOT_FOUND
      A peer attempted to work with a remote entity that does not exist.
      static Symbol NOT_IMPLEMENTED
      The peer tried to use functionality that is not implemented in its partner.
      static Symbol PRECONDITION_FAILED
      The client made a request that was not allowed because some precondition failed.
      static Symbol RESOURCE_DELETED
      A server entity the client is working with has been deleted.
      static Symbol RESOURCE_LIMIT_EXCEEDED
      A peer exceeded its resource allocation.
      static Symbol RESOURCE_LOCKED
      The client attempted to work with a server entity to which it has no access because another client is working with it.
      static Symbol UNAUTHORIZED_ACCESS
      A peer attempted to work with a remote entity to which it has no access due to security settings.
    • Field Detail

      • INTERNAL_ERROR

        static final Symbol INTERNAL_ERROR
        An internal error occurred. Operator intervention might be necessary to resume normal operation.
      • NOT_FOUND

        static final Symbol NOT_FOUND
        A peer attempted to work with a remote entity that does not exist.
      • UNAUTHORIZED_ACCESS

        static final Symbol UNAUTHORIZED_ACCESS
        A peer attempted to work with a remote entity to which it has no access due to security settings.
      • DECODE_ERROR

        static final Symbol DECODE_ERROR
        Data could not be decoded.
      • RESOURCE_LIMIT_EXCEEDED

        static final Symbol RESOURCE_LIMIT_EXCEEDED
        A peer exceeded its resource allocation.
      • NOT_ALLOWED

        static final Symbol NOT_ALLOWED
        The peer tried to use a frame in a manner that is inconsistent with the semantics defined in the specification.
      • INVALID_FIELD

        static final Symbol INVALID_FIELD
        An invalid field was passed in a frame body, and the operation could not proceed.
      • NOT_IMPLEMENTED

        static final Symbol NOT_IMPLEMENTED
        The peer tried to use functionality that is not implemented in its partner.
      • RESOURCE_LOCKED

        static final Symbol 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

        static final Symbol PRECONDITION_FAILED
        The client made a request that was not allowed because some precondition failed.
      • RESOURCE_DELETED

        static final Symbol RESOURCE_DELETED
        A server entity the client is working with has been deleted.
      • ILLEGAL_STATE

        static final Symbol ILLEGAL_STATE
        The peer sent a frame that is not permitted in the current state.
      • FRAME_SIZE_TOO_SMALL

        static final Symbol 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.