AcceptPendingException

  • AcceptPendingException is an unchecked exception signaling an attempt to start a new accept operation on a channel while a previous one is still in progress.

  • It's thrown when a channel's accept operation is initiated before a prior accept operation has finished.

  • This exception inherits methods from IllegalStateException, Throwable, and Object, providing functionalities for handling and inspecting the exception.

  • A public constructor AcceptPendingException() is available to create instances of this exception.

public class AcceptPendingException extends IllegalStateException

Unchecked exception thrown when an attempt is made to initiate an accept operation on a channel and a previous accept operation has not completed.

Public Constructor Summary

AcceptPendingException()
Constructs an instance of this class.

Inherited Method Summary

Public Constructors

public AcceptPendingException ()

Constructs an instance of this class.