mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 12:26:34 +03:00
14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
import { ErrorHandler, Injectable } from '@angular/core';
|
|
import { AppStateService } from '../services/app-state.service';
|
|
|
|
@Injectable()
|
|
export class CustomErrorHandler extends ErrorHandler {
|
|
constructor(private appState: AppStateService) {
|
|
super();
|
|
}
|
|
handleError(error) {
|
|
this.appState.error.next(error && error.rejection || error);
|
|
super.handleError(error);
|
|
}
|
|
}
|