W3cubDocs

/Kotlin

NoSuchFileException

class NoSuchFileException : FileSystemException

Platform and version requirements: JVM

An exception class which is used when file to copy does not exist.

Constructors

<init>

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

An exception class which is used when file to copy does not exist.

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/-no-such-file-exception/