CloudWatchException constructor

CloudWatchException({
  1. required String? message,
  2. required StackTrace? stackTrace,
  3. String? type,
  4. int? statusCode,
  5. String? raw,
})

A custom error to identify CloudWatch errors more easily

message: the cause of the error stackTrace: the stack trace of the error

Implementation

CloudWatchException({
  required this.message,
  required this.stackTrace,
  this.type,
  this.statusCode,
  this.raw,
});