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

jvmMain.dev.atsushieno.alsakt.AlsaException.kt Maven / Gradle / Ivy

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)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy