UNPKG

@darkwolf/telegram-bot.lazy.cjs

Version:
13 lines (10 loc) 349 B
const errors = require('./') class ChatNotFoundError extends errors.NotFoundError { constructor(id) { super(`Chat not found: '${id}'.`, ChatNotFoundError.code) this.setName(ChatNotFoundError.name) } } ChatNotFoundError.name = 'ChatNotFoundError' ChatNotFoundError.code = 'chat-not-found' module.exports = ChatNotFoundError