11 lines
394 B
Python
11 lines
394 B
Python
class WalletNotFoundError(Exception):
|
|
"""Wallet could not find user with such an ID from a guild in the database"""
|
|
|
|
def __init__(self, owner_id: int, guild_id: int) -> None:
|
|
self.owner_id = owner_id
|
|
self.guild_id = guild_id
|
|
|
|
super().__init__(
|
|
f"Wallet of a user with id {self.owner_id} was not found for the guild with id {self.guild_id}"
|
|
)
|