process abstract method

Future<Response?> process(
  1. Event event,
  2. ExceptionSource<T> source
)

Handling exceptions.

If you don't want to handle the current exception, you can directly return null, which can transfer the exception to the upper level registered filter for processing.

Implementation

Future<Response?> process(Event event, ExceptionSource<T> source);