ForbiddenException constructor

ForbiddenException(
  1. String message, {
  2. dynamic details,
})

Implementation

ForbiddenException(
  super.message, {
  super.details,
}) : super(
        statusCode: 403,
        title: 'Forbidden',
        type: 'forbidden',
      );