io.github.biezhi.tgbot.BotException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-api Show documentation
Show all versions of telegram-bot-api Show documentation
Telegram bot library by Java
The newest version!
package io.github.biezhi.tgbot;
/**
* @author biezhi
* @date 2017/10/1
*/
public class BotException extends RuntimeException {
public BotException(String message) {
super(message);
}
}