ReplayException constructor

ReplayException(
  1. String file,
  2. int line,
  3. CliException cause
)

Creates a replay exception.

Implementation

ReplayException(this.file, this.line, this.cause)
    : super('Error at $file:$line: ${cause.message}');