GalileoHttpException constructor

GalileoHttpException(
  1. dynamic error, {
  2. String? message = '500 Internal Server Error',
  3. StackTrace? stackTrace,
  4. int? statusCode = 500,
  5. List<String> errors = const [],
})

Implementation

GalileoHttpException(this.error,
    {this.message = '500 Internal Server Error',
    this.stackTrace,
    this.statusCode = 500,
    List<String> errors = const []}) {
  if (errors != null) {
    this.errors.addAll(errors);
  }
}