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

appleMain.Exceptions.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("ktlint:standard:filename")

package com.juul.kable

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy