ErrorHandler em Angular2

Eu tenho uma pergunta sobre a nova classe ErrorHandler (foi incluída no RC.6).

Eu fiz exemplo de documentos oficiais:https://angular.io/docs/ts/latest/api/core/index/ErrorHandler-class.html

import{ErrorHandler} from "@angular/core";
import{NgModule} from "@angular/core";
export class MyErrorHandler implements ErrorHandler {

    call(error: any, stackTrace: any = null, reason: any = null) {
        // do something with the exception
        console.log("do something with the exception");
    }

    // I handle the given error.
    public handleError( error: any ): void {
        console.log("I handle the given error");
    }

}
@NgModule({
    providers: [
        {
            provide: ErrorHandler,
            useClass: MyErrorHandler
        }
     ]
})
export class MyErrorModule {}

Depois de editar meu arquivo app.module

import {MyErrorHandler} from "./error.module";
import {MyErrorModule } from "./error.module";
..
@NgModule({
    imports: [
        MyErrorModule
    ....
    ],
    ...
    providers: [MyErrorHandler]
   ....

Agora MyErrorHandler captura erros:

throw new Error("my test error");

Mas ele não captura erros de http como: "GEThttp://example.com/rest/user 401 (não autorizado) ". Alguém pode me explicar isso?

Desde já, obrigado!

questionAnswers(2)

yourAnswerToTheQuestion