"""Wallet's balance is not sufficient to perform the operation"""
def__init__(
self,
wallet:"Wallet",
amount:float,
)->None:
self.wallet=wallet
self.amount=amount
super().__init__(
f"Wallet of a user with id {self.wallet.owner_id} for the guild with id {self.wallet.guild_id} does not have sufficient funds to perform the operation (balance: {self.wallet.balance}, requested: {self.amount})"