Package com.rabbitmq.client
Class UnexpectedFrameError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.rabbitmq.client.UnexpectedFrameError
-
- All Implemented Interfaces:
java.io.Serializable
public class UnexpectedFrameError extends java.lang.RuntimeException
Thrown when the command parser hits an unexpected frame type.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
_expectedFrameType
private Frame
_frame
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnexpectedFrameError(Frame frame, int expectedFrameType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getExpectedFrameType()
Frame
getReceivedFrame()
static long
getSerialVersionUID()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
_frame
private final Frame _frame
-
_expectedFrameType
private final int _expectedFrameType
-
-
Constructor Detail
-
UnexpectedFrameError
public UnexpectedFrameError(Frame frame, int expectedFrameType)
-
-
Method Detail
-
getSerialVersionUID
public static long getSerialVersionUID()
-
getReceivedFrame
public Frame getReceivedFrame()
-
getExpectedFrameType
public int getExpectedFrameType()
-
-