commonMain.dev.atsushieno.ktmidi.Midi1Exception.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmidi-jvm Show documentation
Show all versions of ktmidi-jvm Show documentation
Kotlin Multiplatform library for MIDI 1.0 and MIDI 2.0
The newest version!
package dev.atsushieno.ktmidi
class Midi1Exception : Exception {
constructor() : super()
constructor(message: String) : super(message)
constructor(message: String, innerException: Exception) : super(message, innerException)
}