public class SinkFullException 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 |
|---|
SinkFullException(java.lang.String message)
Create a
SinkFullException with an associated message. |
SinkFullException(java.lang.String message,
java.lang.Throwable e)
Create a
SinkClosedException with an associated message
and the original exception that caused the problem. |
getCausepublic SinkFullException(java.lang.String message)
SinkFullException with an associated message.message - The string message to print in the stack tracepublic SinkFullException(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.