InvalidSchemeException constructor

InvalidSchemeException(
  1. String scheme,
  2. List<String> supportedSchemes
)

Implementation

InvalidSchemeException(String scheme, List<String> supportedSchemes)
    : super(
        'Could not parse scheme from connection string',
        "Invalid scheme: '$scheme'. Supported values are: '${supportedSchemes.join("','")}'",
      );