@darkwolf/telegram-bot.lazy.cjs
Version:
Telegram Bot API
13 lines (10 loc) • 409 B
JavaScript
const errors = require('./')
class StickerSetNotFoundError extends errors.NotFoundError {
constructor(name) {
super(`Sticker set not found: '${name}'.`, StickerSetNotFoundError.code)
this.setName(StickerSetNotFoundError.name)
}
}
StickerSetNotFoundError.name = 'StickerSetNotFoundError'
StickerSetNotFoundError.code = 'sticker-set-not-found'
module.exports = StickerSetNotFoundError