RunException constructor

RunException(
  1. String cmdLine,
  2. int? exitCode,
  3. String reason, {
  4. Trace? stackTrace,
})

Implementation

RunException(
  this.cmdLine,
  this.exitCode,
  this.reason, {
  Trace? stackTrace,
}) : super(reason, stackTrace);