FileSystemNotFoundException

  • FileSystemNotFoundException is a runtime exception signaling that a file system could not be located.

  • It inherits from RuntimeException and provides two constructors: one with no arguments and another accepting a detail message.

  • This exception typically arises when attempting to access a file system that is not available or not recognized by the Java Virtual Machine.

public class FileSystemNotFoundException extends RuntimeException

Runtime exception thrown when a file system cannot be found.

Public Constructor Summary

FileSystemNotFoundException()
Constructs an instance of this class.
FileSystemNotFoundException(String msg)
Constructs an instance of this class.

Inherited Method Summary

Public Constructors

public FileSystemNotFoundException ()

Constructs an instance of this class.

public FileSystemNotFoundException (String msg)

Constructs an instance of this class.

Parameters
msg the detail message