MastodonUnauthorizedException constructor

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

Implementation

const MastodonUnauthorizedException({
  super.message = 'Unauthorized',
  super.endpoint,
  super.raw,
}) : super(statusCode: 401);