All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bjoernpetersen.jmusicbot.provider.NoSuchSongException Maven / Gradle / Ivy

There is a newer version: 0.25.0
Show newest version
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