This repository has been archived on 2025-08-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dawd3/src/main/kotlin/net/liquidev/dawd3/audio/device/exceptions.kt
2022-11-20 23:06:55 +01:00

5 lines
165 B
Kotlin

package net.liquidev.dawd3.audio.device
class NoSuchPortException(what: String) : Exception(what)
class PortAlreadyExistsException(what: String) : Exception(what)