ImpakRetroException constructor

ImpakRetroException(
  1. ExceptionType type, {
  2. String? message,
  3. required int? statusCode,
})

Creates an ImpakRetroException with the specified type, message, and statusCode.

The type is required, while message and statusCode are optional.

Implementation

ImpakRetroException(this.type, {this.message, required this.statusCode});