MastodonForbiddenException constructor

const MastodonForbiddenException({
  1. String message = 'Forbidden',
  2. String? endpoint,
  3. Object? raw,
})

Implementation

const MastodonForbiddenException({
  super.message = 'Forbidden',
  super.endpoint,
  super.raw,
}) : super(statusCode: 403);