com.github.bjoernpetersen.jmusicbot.InitializationException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of musicbot Show documentation
Show all versions of musicbot Show documentation
Core library of MusicBot, which plays music from various providers.
package com.github.bjoernpetersen.jmusicbot
import java.lang.Exception
/**
* An Exception occurring during the initialization of the MusicBot / a Plugin.
*/
class InitializationException : Exception {
constructor() : super()
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
constructor(cause: Throwable) : super(cause)
}
/**
* An Exception thrown if the user cancels the MusicBot initialization.
*/
class CancelException : Exception {
constructor() : super()
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
constructor(cause: Throwable) : super(cause)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy