11 lines
319 B
Python
11 lines
319 B
Python
|
class UserNotFoundError(Exception):
|
||
|
"""HoloUser could not find user with such an ID in database"""
|
||
|
|
||
|
def __init__(self, user, user_id):
|
||
|
self.user = user
|
||
|
self.user_id = user_id
|
||
|
|
||
|
super().__init__(
|
||
|
f"User of type {type(self.user)} with id {self.user_id} was not found"
|
||
|
)
|