ConverterFailedException constructor

ConverterFailedException(
  1. Converter failed,
  2. StringView input,
  3. ContextData context
)

Create a new ConverterFailedException.

Implementation

ConverterFailedException(this.failed, this.input, ContextData context)
    : super(
        'Could not parse input $input to type "${failed.type}"',
        context,
      );