Class SoftEndOfStreamException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.integration.ip.tcp.serializer.SoftEndOfStreamException
- All Implemented Interfaces:
java.io.Serializable
public class SoftEndOfStreamException
extends java.lang.RuntimeException
Used to communicate that a stream has closed, but between logical
messages.
- Since:
- 2.0
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description SoftEndOfStreamException()Default constructor.SoftEndOfStreamException(java.lang.String message)Construct an instance with the message.SoftEndOfStreamException(java.lang.String message, java.lang.Throwable cause)Construct an instance with the message and cause. -
Method Summary
-
Constructor Details
-
SoftEndOfStreamException
public SoftEndOfStreamException()Default constructor. -
SoftEndOfStreamException
public SoftEndOfStreamException(java.lang.String message)Construct an instance with the message.- Parameters:
message- the message.
-
SoftEndOfStreamException
public SoftEndOfStreamException(java.lang.String message, java.lang.Throwable cause)Construct an instance with the message and cause.- Parameters:
message- the message.cause- the cause.- Since:
- 4.3.21.
-