wf.utils.telegram_client_api.models.exception.TelegramClientRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WF-TelegramClientApi Show documentation
Show all versions of WF-TelegramClientApi Show documentation
TelegramClientApi utils on Java
package wf.utils.telegram_client_api.models.exception;
public class TelegramClientRequestException extends RuntimeException {
public TelegramClientRequestException() {
}
public TelegramClientRequestException(String message) {
super(message);
}
public TelegramClientRequestException(String message, Throwable cause) {
super(message, cause);
}
public TelegramClientRequestException(Throwable cause) {
super(cause);
}
public TelegramClientRequestException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy