appleMain.Exceptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kable-exceptions Show documentation
Show all versions of kable-exceptions Show documentation
Kotlin Asynchronous Bluetooth Low Energy
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)
}