Package org.springframework.amqp
Class AmqpIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.amqp.AmqpException
org.springframework.amqp.AmqpIOException
- All Implemented Interfaces:
Serializable
RuntimeException wrapper for an
IOException
which
can be commonly thrown from AMQP operations.- Author:
- Mark Pollack, Gary Russell
- See Also:
-
Constructor Summary
ConstructorDescriptionAmqpIOException
(IOException cause) Construct an instance with the provided cause.AmqpIOException
(String message, Throwable cause) Construct an instance with the provided message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AmqpIOException
Construct an instance with the provided cause.- Parameters:
cause
- the cause.
-
AmqpIOException
Construct an instance with the provided message and cause.- Parameters:
message
- the message.cause
- the cause.- Since:
- 2.0
-