better perf

This commit is contained in:
2025-12-09 12:02:26 +03:00
parent 725a1f2e40
commit 56189be6ab
7 changed files with 138 additions and 115 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ class Router:
command_handler = self.command_handlers.get_command_handler_by_trigger(input_command_name)
if not command_handler:
raise RuntimeError(f"Handler for '{input_command.trigger}' command not found!")
raise RuntimeError(f"Handler for '{input_command.trigger}' command not found. Panic!")
else:
self.process_input_command(input_command_flags, command_handler)