FhirPathDeprecatedExpressionException constructor

FhirPathDeprecatedExpressionException(
  1. String message, {
  2. String? pathExpression,
  3. int? offset,
  4. String? token,
  5. Object? cause,
})

Implementation

FhirPathDeprecatedExpressionException(
  String message, {
  String? pathExpression,
  int? offset,
  String? token,
  Object? cause,
}) : super(
       message,
       pathExpression: pathExpression,
       offset: offset,
       token: token,
       cause: cause,
     );