ClosedDirectoryStreamException

  • ClosedDirectoryStreamException is an unchecked exception indicating an operation was attempted on a closed directory stream.

  • It's a subclass of IllegalStateException and provides a single constructor with no arguments.

  • This exception inherits methods from Throwable for stack trace and error handling.

  • It also inherits methods from Object for basic object operations.

public class ClosedDirectoryStreamException extends IllegalStateException

Unchecked exception thrown when an attempt is made to invoke an operation on a directory stream that is closed.

Public Constructor Summary

ClosedDirectoryStreamException()
Constructs an instance of this class.

Inherited Method Summary

Public Constructors

public ClosedDirectoryStreamException ()

Constructs an instance of this class.