W3cubDocs

/Kotlin

AccessDeniedException

class AccessDeniedException : FileSystemException

Platform and version requirements: JVM

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

Constructors

<init>

AccessDeniedException(
    file: File, 
    other: File? = null, 
    reason: String? = null)

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

Inherited Properties

file

val file: File

the file on which the failed operation was performed.

other

val other: File?

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

reason

val reason: String?

the description of the error

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.io/-access-denied-exception/