mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
9 lines
285 B
Python
9 lines
285 B
Python
class NoRegisteredHandlersException(Exception):
|
|
"""
|
|
The router has no registered handlers
|
|
"""
|
|
def __init__(self, router_name) -> None:
|
|
self.router_name = router_name
|
|
def __str__(self):
|
|
return f"No Registered Handlers Found For '{self.router_name}'"
|