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:
java.io.Serializable
public class AmqpIOException extends AmqpException
RuntimeException wrapper for anIOException
which can be commonly thrown from AMQP operations.- Author:
- Mark Pollack, Gary Russell
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AmqpIOException(java.io.IOException cause)
Construct an instance with the provided cause.AmqpIOException(java.lang.String message, java.lang.Throwable cause)
Construct an instance with the provided message and cause.
-
-
-
Constructor Detail
-
AmqpIOException
public AmqpIOException(java.io.IOException cause)
Construct an instance with the provided cause.- Parameters:
cause
- the cause.
-
AmqpIOException
public AmqpIOException(java.lang.String message, java.lang.Throwable cause)
Construct an instance with the provided message and cause.- Parameters:
message
- the message.cause
- the cause.- Since:
- 2.0
-
-