resolve method
Resolve the exception handler from Context.
Implementation
ExceptionHandler resolve(Context context) {
final handler = context[ExceptionHandler];
if (handler is ExceptionHandler) {
return handler;
}
return this.handler;
}