CryptoFlowException constructor
CryptoFlowException({
- required String stepName,
- required int stepIndex,
- required Object cause,
- 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');