Cómo inyectar mi servicio a ExceptionHandler

Utilicé mi servicio en otros lugares inyectados automáticamente por angular 2. Quiero usar el mismo servicio en ExceptionHandler. Pero el servicio no publica datos en el servidor. Pasé por el depurador y mi servicio invoca.

class MyExceptionHandler extends ExceptionHandler {
  rbJSLogger: RBLoggerService;

  constructor() {
    super(null,null);
    var injector = ReflectiveInjector.resolveAndCreate([
      RBLoggerService,
      JSONP_PROVIDERS,
      Http,
      ConnectionBackend,
      HTTP_PROVIDERS
    ]);
    this.rbJSLogger = injector.get(RBLoggerService);
  }
  call(error, stackTrace = null, reason = null){
    // console.error(stackTrace);
    this.rbJSLogger.searchBy("asd");
  }
}

Respuestas a la pregunta(1)

Su respuesta a la pregunta