CloudWatchException constructor
CloudWatchException({
- required String? message,
- required StackTrace? stackTrace,
- String? type,
- int? statusCode,
- 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,
});