public class SinkClosedException extends SinkException
The interface design is heavily influenced by Matt Welsh's SandStorm server, his demonstration of the SEDA architecture. We have deviated where we felt the design differences where better.
| Constructor and Description |
|---|
SinkClosedException(java.lang.String message)
Create a
SinkClosedException with an associated message. |
SinkClosedException(java.lang.String message,
java.lang.Throwable e)
Create a
SinkClosedException with an associated message
and the original exception that caused the problem. |
getCausepublic SinkClosedException(java.lang.String message)
SinkClosedException with an associated message.message - The string message to print in the stack tracepublic SinkClosedException(java.lang.String message,
java.lang.Throwable e)
SinkClosedException with an associated message
and the original exception that caused the problem.message - The string message to print in the stack tracee - The exception that caused this one.