Skip to content

Instantly share code, notes, and snippets.

@robertohuertasm
Created December 23, 2018 02:03
Show Gist options
  • Save robertohuertasm/24bf4bdcbfd52e5c9a6e0d0bb6d21e2d to your computer and use it in GitHub Desktop.
Save robertohuertasm/24bf4bdcbfd52e5c9a6e0d0bb6d21e2d to your computer and use it in GitHub Desktop.
never miss error ionic
class CustomErrorHandler implements IonicErrorHandler {
handleError(error: Error) {
// do something with the exception
}
}
@NgModule({
providers: [{ provide: ErrorHandler, useClass: CustomErrorHandler }],
})
class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment