Package org.jboss.netty.channel
Interface ExceptionEvent
-
- All Superinterfaces:
ChannelEvent
- All Known Implementing Classes:
DefaultExceptionEvent
public interface ExceptionEvent extends ChannelEvent
AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread. This event is for going upstream only. Please refer to theChannelEvent
documentation to find out what an upstream event and a downstream event are and what fundamental differences they have.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Throwable
getCause()
Returns the raised exception.-
Methods inherited from interface org.jboss.netty.channel.ChannelEvent
getChannel, getFuture
-
-
-
-
Method Detail
-
getCause
Throwable getCause()
Returns the raised exception.
-
-