MambaExecutionError constructor

MambaExecutionError({
  1. required MambaExecutionPhase phase,
  2. required MambaException exception,
  3. required StackTrace stackTrace,
  4. required List<String> commandPath,
})

Implementation

new({
  required this.phase,
  required this.exception,
  required this.stackTrace,
  required List<String> commandPath,
}) : commandPath = List.unmodifiable(commandPath);