ForbiddenException constructor

ForbiddenException(
  1. String message, {
  2. int? status,
})

Implementation

ForbiddenException(String message, {int? status})
  : super(message, "Forbidden: ", status: status ?? 403);