ExceptionFault constructor

const ExceptionFault(
  1. Exception exception,
  2. StackTrace stackTrace
)

Creates an ExceptionFault with the given exception and stackTrace

Implementation

const ExceptionFault(this.exception, StackTrace stackTrace)
  : super._internal(stackTrace);