nativeMain.kotlinx.io.errors.IOException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-io-linuxx64 Show documentation
Show all versions of kotlinx-io-linuxx64 Show documentation
IO support libraries for Kotlin
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