NotYetBoundException

  • NotYetBoundException is an unchecked exception indicating an I/O operation was attempted on an unbound server socket channel.

  • It is a subclass of IllegalStateException.

  • It provides a public constructor with no arguments to create an instance of the exception.

  • This exception inherits methods from Throwable and Object for exception handling and object manipulation.

public class NotYetBoundException extends IllegalStateException

Unchecked exception thrown when an attempt is made to invoke an I/O operation upon a server socket channel that is not yet bound.

Public Constructor Summary

NotYetBoundException()
Constructs an instance of this class.

Inherited Method Summary

Public Constructors

public NotYetBoundException ()

Constructs an instance of this class.