public class BlockingOperationException
extends java.lang.IllegalStateException
IllegalStateException which is raised when a user performed a blocking operation
when the user is in an event loop thread. If a blocking operation is performed in an event loop
thread, the blocking operation will most likely enter a dead lock state, hence throwing this
exception.| Constructor and Description |
|---|
BlockingOperationException() |
BlockingOperationException(java.lang.String s) |
BlockingOperationException(java.lang.String message,
java.lang.Throwable cause) |
BlockingOperationException(java.lang.Throwable cause) |
public BlockingOperationException()
public BlockingOperationException(java.lang.String s)
public BlockingOperationException(java.lang.Throwable cause)
public BlockingOperationException(java.lang.String message,
java.lang.Throwable cause)
Copyright © 2008–2018 The Netty Project. All rights reserved.