AccessDeniedException

class AccessDeniedException(    val file: File,     val other: File? = null,     val reason: String? = null) : FileSystemException(source)

An exception class which is used when we have not enough access for some operation.

Constructors

Link copied to clipboard
fun AccessDeniedException(    file: File,     other: File? = null,     reason: String? = null)

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
val file: File

the file on which the failed operation was performed.

Link copied to clipboard
open val message: String?
Link copied to clipboard
val other: File? = null

the second file involved in the operation, if any (for example, the target of a copy or move)

Link copied to clipboard
val reason: String? = null

the description of the error

Extensions

Link copied to clipboard
expect fun Throwable.addSuppressed(exception: Throwable)

When supported by the platform, adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.

actual fun Throwable.addSuppressed(exception: Throwable)

When supported by the platform, adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.

actual fun Throwable.addSuppressed(exception: Throwable)

Adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.

actual fun Throwable.addSuppressed(exception: Throwable)

Adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.

Link copied to clipboard

Returns a list of stack trace addresses representing the stack trace pertaining to this throwable.

Link copied to clipboard

Prints the detailed description of this throwable to the standard output or standard error output.

Prints the detailed description of this throwable to the specified writer.

Prints the detailed description of this throwable to the specified stream.

actual inline fun Throwable.printStackTrace()

Prints the detailed description of this throwable to the standard error output.

Prints the detailed description of this throwable to console error output.

actual inline fun Throwable.printStackTrace()

Prints the detailed description of this throwable to the standard output.

Link copied to clipboard

Returns an array of stack trace elements representing the stack trace pertaining to this throwable.

Link copied to clipboard

Returns the detailed description of this throwable with its stack trace.

Returns the detailed description of this throwable with its stack trace.

Returns the detailed description of this throwable with its stack trace.

Returns the detailed description of this throwable with its stack trace.

Link copied to clipboard

Returns a list of all exceptions that were suppressed in order to deliver this exception.

Returns a list of all exceptions that were suppressed in order to deliver this exception.

Returns a list of all exceptions that were suppressed in order to deliver this exception.

Returns a list of all exceptions that were suppressed in order to deliver this exception.