DependencyNotFoundException constructor

const DependencyNotFoundException(
  1. Type requiredBy,
  2. String parameterName, [
  3. CatalystBuilderException? inner
])

Creates a new DependencyNotFoundException object.

Implementation

const DependencyNotFoundException(
  this.requiredBy,
  this.parameterName, [
  CatalystBuilderException? inner,
]) : super(
        'One or more dependencies of $requiredBy was not found. '
        '(Parameter: $parameterName)',
        inner,
      );