wrapHandlers method
Wraps multiple handlers with exception handling.
Implementation
List<RequestHandler> wrapHandlers(List<RequestHandler> handlers) {
return handlers.map(wrapWithExceptionHandler).toList();
}
Wraps multiple handlers with exception handling.
List<RequestHandler> wrapHandlers(List<RequestHandler> handlers) {
return handlers.map(wrapWithExceptionHandler).toList();
}