Files
telegram-helper-bot/helper_bot/handlers/group/exceptions.py
2026-02-01 23:03:23 +03:00

14 lines
291 B
Python

"""Custom exceptions for group handlers"""
class NoReplyToMessageError(Exception):
"""Raised when admin tries to reply without selecting a message"""
pass
class UserNotFoundError(Exception):
"""Raised when user is not found in database for the given message_id"""
pass