public class BlockingOperationException extends 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(String s) |
BlockingOperationException(String message,
Throwable cause) |
BlockingOperationException(Throwable cause) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Copyright © 2008–2017 The Netty Project. All rights reserved.