TelegramBots/telegrambots/src/main/java/org/telegram/telegrambots/facilities/filedownloader/DownloadFileException.java

11 lines
311 B
Java

package org.telegram.telegrambots.facilities.filedownloader;
/**
* Runtime Exception to wrap Exceptions thrown during file download
*/
public class DownloadFileException extends RuntimeException {
public DownloadFileException(final String message, final Throwable e) {
super(message, e);
}
}