AtException constructor

AtException(
  1. String message, {
  2. Intent? intent,
  3. ExceptionScenario? exceptionScenario,
})

Implementation

AtException(this.message, {this.intent, this.exceptionScenario}) {
  if (intent != null && exceptionScenario != null) {
    _traceStack.add(AtChainedException(intent!, exceptionScenario!, message));
  }
}