com.github.bjoernpetersen.jmusicbot.provider.BrokenSuggesterException.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.provider
/**
* Indicates that a Suggester cannot fulfill a suggestion request right now.
*
* This Exception does **not** imply that the suggester will be broken in the future.
*/
class BrokenSuggesterException : 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