IOException

expect open class IOException(message: String?, cause: Throwable?) : Exception(source)

Represents an I/O exception.

Parameters

message

the detail message, or null if no detail message is provided.

cause

the cause of this exception, or null if no cause is specified.

Inheritors

actual open class IOException(message: String?, cause: Throwable?) : Exception(source)

Inheritors

Constructors

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

Properties

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