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

org.telegram.telegrambots.facilities.filedownloader.DownloadFileException Maven / Gradle / Ivy

There is a newer version: 6.9.7.1
Show newest version
package org.telegram.telegrambots.facilities.filedownloader;

/**
 * Runtime Exception to wrap Exceptions thrown during file download
 */
@SuppressWarnings("WeakerAccess")
public class DownloadFileException extends RuntimeException {
    public DownloadFileException(final String message, final Throwable e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy