Replace catch of Exception with Throwable as Field.get(..) can also throw an Error
This commit is contained in:
parent
a58533fdad
commit
adb4b87fa8
@ -59,7 +59,7 @@ public class AioEventLoop extends MultithreadEventLoop {
|
||||
AbstractAioChannel ch = null;
|
||||
try {
|
||||
ch = findChannel(command);
|
||||
} catch (Exception e) {
|
||||
} catch (Throwable t) {
|
||||
// Ignore
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user