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

dev.struchkov.godfather.telegram.main.context.exception.TelegramBotException Maven / Gradle / Ivy

package dev.struchkov.godfather.telegram.main.context.exception;

public class TelegramBotException extends RuntimeException {

    public TelegramBotException() {
    }

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

    public TelegramBotException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy