FileSystemException

open class FileSystemException : IOException

Thrown when a file system operation fails on one or two files. This class is the general class for file system exceptions.

Since

1.7

Inheritors

Constructors

Link copied to clipboard
constructor(file: String)

Constructs an instance of this class. This constructor should be used when an operation involving one file fails and there isn't any additional information to explain the reason.

constructor(file: String, other: String, reason: String)

Constructs an instance of this class. This constructor should be used when an operation involving two files fails, or there is additional information to explain the reason.

Properties

Link copied to clipboard
expect open val cause: Throwable?
Link copied to clipboard

String identifying the file or null if not known.

Link copied to clipboard
open override val message: String?
Link copied to clipboard

String identifying the other file or null if there isn't another file or if not known.

Link copied to clipboard

Functions

Link copied to clipboard