AlarmException constructor

const AlarmException(
  1. AlarmErrorCode code, {
  2. String? message,
  3. String? stacktrace,
})

Creates an AlarmException with the given error message.

Implementation

const AlarmException(this.code, {this.message, this.stacktrace});