FileNotFoundException

Constructors

Link copied to clipboard
expect constructor()
expect constructor(message: String?)
actual constructor()
actual constructor(message: String?)

Properties

cause
Link copied to clipboard
open val cause: Throwable?
open val cause: Throwable?
Link copied to clipboard
val Throwable.errorCodeOrNull: String?
message
Link copied to clipboard
open val message: String?
open val message: String?

Functions

Link copied to clipboard
fun Throwable.toIOException(): IOException
Link copied to clipboard
@JvmName(name = "wrapIO")
inline fun Throwable.wrapIOException(): IOException

Ensures that the throwable is an instance of IOException. If it is not, it will encase it in one.

@JvmName(name = "wrapIO")
inline fun Throwable.wrapIOException(lazyMessage: () -> String): IOException

Ensures that the throwable is an instance of IOException. If it is not, it will encase it in one with the provided lazyMessage.