Class ProtocolVersionMismatchException

All Implemented Interfaces:
Serializable

public class ProtocolVersionMismatchException extends ProtocolException
Thrown to indicate that the server does not support the wire protocol version we requested immediately after opening the TCP socket.
See Also:
  • Constructor Details

    • ProtocolVersionMismatchException

      public ProtocolVersionMismatchException(Version clientVersion, Version serverVersion)
  • Method Details

    • getClientVersion

      public Version getClientVersion()
      The client's AMQP specification version.
    • getServerVersion

      public Version getServerVersion()
      The server's AMQP specification version.
    • getClientMajor

      public int getClientMajor()
      The client's AMQP specification major version.
    • getClientMinor

      public int getClientMinor()
      The client's AMQP specification minor version.
    • getServerMajor

      public int getServerMajor()
      The server's AMQP specification major version.
    • getServerMinor

      public int getServerMinor()
      The server's AMQP specification minor version.