IllegalBlockingModeException

  • IllegalBlockingModeException is an unchecked exception signaling an operation invoked on a channel with the incorrect blocking mode.

  • It's thrown when a blocking-mode-specific operation is used on a channel not in the appropriate mode.

  • This exception inherits from IllegalStateException and provides a public constructor with no arguments.

public class IllegalBlockingModeException extends IllegalStateException

Unchecked exception thrown when a blocking-mode-specific operation is invoked upon a channel in the incorrect blocking mode.

Public Constructor Summary

IllegalBlockingModeException()
Constructs an instance of this class.

Inherited Method Summary

Public Constructors

public IllegalBlockingModeException ()

Constructs an instance of this class.