Javelina/classes/errors/pycord_guild.py

8 lines
267 B
Python
Raw Normal View History

2025-02-20 22:51:01 +01:00
class GuildNotFoundError(Exception):
"""PycordGuild could not find guild with such an ID in the database"""
def __init__(self, guild_id: int) -> None:
self.guild_id = guild_id
super().__init__(f"Guild with id {self.guild_id} was not found")