AbstractProviderError(ReflectiveInjector injector, ReflectiveKey key, Function constructResolvingMessage)

Source

AbstractProviderError(ReflectiveInjector injector, ReflectiveKey key,
    Function constructResolvingMessage)
    : super("DI Exception") {
  this.keys = [key];
  this.injectors = [injector];
  this.constructResolvingMessage = constructResolvingMessage;
  this.message = this.constructResolvingMessage(this.keys);
}