UNPKG

@darkwolf/telegram-bot.lazy.cjs

Version:
13 lines (10 loc) 409 B
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