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

technology.dice.dicewhere.downloader.exception.DownloaderException Maven / Gradle / Ivy

The newest version!
package technology.dice.dicewhere.downloader.exception;

public class DownloaderException extends RuntimeException {

  public DownloaderException(Throwable cause) {
    super(cause);
  }

  public DownloaderException(String message) {
    super(message);
  }

  public DownloaderException(String s, Exception e) {
    super(s, e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy