Skip to content

Commit

Permalink
Merge pull request #446 from aoberoi/v2-App-handleError-private
Browse files Browse the repository at this point in the history
Make App.handleError() private (v2)
  • Loading branch information
stevengill authored Mar 27, 2020
2 parents 4dfd12b + d4c9fae commit 56f0416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export default class App {
/**
* Global error handler. The final destination for all errors (hopefully).
*/
public handleError(error: Error): Promise<void> {
private handleError(error: Error): Promise<void> {
return this.errorHandler(asCodedError(error));
}

Expand Down

0 comments on commit 56f0416

Please sign in to comment.