Change Exception error message to match the function

This commit is contained in:
Herindra Setiawan 2021-05-18 15:40:14 +07:00
parent 09cdf87724
commit d315745f2e

View File

@ -623,7 +623,7 @@ public abstract class DefaultAbsSender extends AbsSender {
return setStickerSetThumb.deserializeResponse(sendHttpPostRequest(httppost));
} catch (IOException e) {
throw new TelegramApiException("Unable to add sticker to set", e);
throw new TelegramApiException("Unable to set sticker set thumb", e);
}
}