All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nativeMain.kotlinx.io.errors.IOException.kt Maven / Gradle / Ivy

There is a newer version: 0.1.16
Show newest version
package kotlinx.io.errors

actual open class IOException actual constructor(message: String, cause: Throwable?) : Exception(message, cause) {
    actual constructor(message: String) : this(message, null)
}

actual open class EOFException actual constructor(message: String) : IOException(message)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy