ErrorHandler
提供用于集中式异常处理的挂钩。
Provides a hook for centralized exception handling.
class ErrorHandler {
handleError(error: any): void
}
说明
ErrorHandler
的默认实现将错误消息打印到 console
。要拦截错误处理,请编写一个自定义的异常处理器,该异常处理器将把此默认行为改成你应用所需的。
The default implementation of ErrorHandler
prints error messages to the console
. To intercept error handling, write a custom exception handler that replaces this default as appropriate for your app.
Further information available in the Usage Notes...
方法
使用说明
例子
Example
class MyErrorHandler implements ErrorHandler {
handleError(error) {
// do something with the exception
}
}
@NgModule({
providers: [{provide: ErrorHandler, useClass: MyErrorHandler}]
})
class MyModule {}