Files
QuizBot/classes/errors/pycord_user.py
2025-04-16 18:39:03 +02:00

8 lines
259 B
Python

class UserNotFoundError(Exception):
"""PycordUser could not find user with such an ID in the database"""
def __init__(self, user_id: int) -> None:
self.user_id = user_id
super().__init__(f"User with id {self.user_id} was not found")