CryptoFlowException constructor

CryptoFlowException({
  1. required String stepName,
  2. required int stepIndex,
  3. required Object cause,
  4. required StackTrace causeStackTrace,
})

Creates a contextual wrapper around an original source or step failure.

Implementation

CryptoFlowException({
  required this.stepName,
  required this.stepIndex,
  required this.cause,
  required this.causeStackTrace,
}) : super('Flow step "$stepName" failed at index $stepIndex');