netty5/transport/src/main/java/io/netty/channel/EventLoopException.java
Trustin Lee 470e7da5d7 Add MultithreadEventLoop
- Add EventLoopException to wrap the exceptions while an event loop does
something
- Make EventLoop.register() return EventLoop so that the caller knows
the actual EventLoop that will handle the Channel even if the caller
called register() from MultithreadEventLoop
2012-04-29 18:40:55 +09:00

23 lines
463 B
Java

package io.netty.channel;
public class EventLoopException extends ChannelException {
private static final long serialVersionUID = -8969100344583703616L;
public EventLoopException() {
}
public EventLoopException(String message, Throwable cause) {
super(message, cause);
}
public EventLoopException(String message) {
super(message);
}
public EventLoopException(Throwable cause) {
super(cause);
}
}