com.github.bjoernpetersen.jmusicbot.provider.NoSuchSongException 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;
public final class NoSuchSongException extends Exception {
public NoSuchSongException() {
}
public NoSuchSongException(String message) {
super(message);
}
public NoSuchSongException(String message, Throwable cause) {
super(message, cause);
}
public NoSuchSongException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy