Package com.rabbitmq.client
Class ProtocolVersionMismatchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.net.ProtocolException
-
- com.rabbitmq.client.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProtocolVersionMismatchException(Version clientVersion, Version serverVersion)
-
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
-
-
-
-
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.
-
-