feat: exceptions handlers (#2855)

* feat: wip exception handlers

* feat: exception capturer

* fix: rename exception-capturer into exception-handler

* fix: remove unused variable
This commit is contained in:
Jérémy M
2023-12-08 10:18:50 +01:00
committed by GitHub
parent 6c83953633
commit cf334ada0e
38 changed files with 983 additions and 340 deletions
@@ -0,0 +1,4 @@
export interface ExceptionHandlerDriverInterface {
captureException(exception: unknown): void;
captureMessage(message: string): void;
}