Signals from ErrorHandler
The lback.core.error_handler.ErrorHandler class is responsible for gracefully handling various application errors and exceptions, generating appropriate HTTP responses. This class emits signals at key moments when error responses are generated, providing critical hooks for centralized error logging, custom error reporting, and integrating with external monitoring and alerting systems.
Signal Name |
Description |
Arguments (kwargs) |
|---|---|---|
|
Emitted immediately after the |
|
|
Emitted whenever a standard error response (e.g., 404 Not Found, 403 Forbidden, 500 Internal Server Error from explicit handle_500, or custom errors) is generated by the error handler. |
|
|
Emitted specifically when an unhandled exception occurs during request processing, leading to a 500 Internal Server Error response. This signal provides detailed context about the exception. |
|