Replace catch of Exception with Throwable as Field.get(..) can also throw an Error

This commit is contained in:
Norman Maurer 2012-07-08 17:29:42 +02:00
parent a58533fdad
commit adb4b87fa8

View File

@ -59,7 +59,7 @@ public class AioEventLoop extends MultithreadEventLoop {
AbstractAioChannel ch = null;
try {
ch = findChannel(command);
} catch (Exception e) {
} catch (Throwable t) {
// Ignore
}