mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
10 lines
252 B
Python
10 lines
252 B
Python
from __future__ import annotations
|
|
|
|
|
|
class RequesterNotFoundError(Exception):
|
|
def __init__(self, requester_name: str):
|
|
self.requester_name = requester_name
|
|
|
|
def __str__(self):
|
|
return f'Requester {self.requester_name} not found'
|