FhirPathEvaluationException constructor

FhirPathEvaluationException(
  1. String message, {
  2. String? pathExpression,
  3. Object? cause,
  4. String? operation,
  5. dynamic arguments,
  6. List? collection,
  7. Map? variables,
})

Implementation

FhirPathEvaluationException(
  String message, {
  String? pathExpression,
  Object? cause,
  String? operation,
  dynamic arguments,
  List<dynamic>? collection,
  Map? variables,
}) : super(
        message,
        pathExpression: pathExpression,
        operation: operation,
        arguments: arguments,
        collection: collection,
        cause: cause,
        environment: variables,
      );