CommandExecutionException constructor

CommandExecutionException(
  1. String command, [
  2. String? message,
  3. dynamic error
])

Implementation

CommandExecutionException(this.command, [String? message, dynamic error])
  : super(message ?? 'Failed to execute command: $command', error);