Class ProtocolVersionMismatchException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ProtocolVersionMismatchException
    extends java.net.ProtocolException
    Thrown to indicate that the server does not support the wire protocol version we requested immediately after opening the TCP socket.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getClientMajor()
      The client's AMQP specification major version.
      int getClientMinor()
      The client's AMQP specification minor version.
      Version getClientVersion()
      The client's AMQP specification version.
      int getServerMajor()
      The server's AMQP specification major version.
      int getServerMinor()
      The server's AMQP specification minor version.
      Version getServerVersion()
      The server's AMQP specification version.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Default serialVersionUID for serializability without version checking.
        See Also:
        Constant Field Values
      • clientVersion

        private final Version clientVersion
      • serverVersion

        private final Version serverVersion
    • Constructor Detail

      • ProtocolVersionMismatchException

        public ProtocolVersionMismatchException​(Version clientVersion,
                                                Version serverVersion)
    • Method Detail

      • 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.