jvmMain.dev.atsushieno.alsakt.AlsaException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmidi-jvm-desktop-jvm Show documentation
Show all versions of ktmidi-jvm-desktop-jvm Show documentation
Kotlin Multiplatform library for MIDI 1.0 and MIDI 2.0 - ALSA and RtMidi
The newest version!
package dev.atsushieno.alsakt
import dev.atsushieno.alsa.javacpp.global.Alsa
class AlsaException : Exception {
constructor() : super("ALSA error")
constructor(errorCode: Int) : super("ALSA error: ${Alsa.snd_strerror(errorCode).string} (error code $errorCode)")
constructor(msg: String?) : super(msg)
constructor(msg: String?, innerException: Exception?) : super(msg, innerException)
}