MastodonValidationException constructor

const MastodonValidationException({
  1. String message = 'Unprocessable entity',
  2. String? endpoint,
  3. Object? raw,
  4. String? serverMessage,
})

Implementation

const MastodonValidationException({
  super.message = 'Unprocessable entity',
  super.endpoint,
  super.raw,
  this.serverMessage,
}) : super(statusCode: 422);