mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
11 lines
335 B
Python
11 lines
335 B
Python
class NoRegisteredRoutersException(Exception):
|
|
def __str__(self):
|
|
return "No Registered Router Found"
|
|
|
|
|
|
class NoRegisteredHandlersException(Exception):
|
|
def __init__(self, router_name):
|
|
self.router_name = router_name
|
|
def __str__(self):
|
|
return f"No Registered Handlers Found For '{self.router_name}'"
|