UnauthorizedException constructor

UnauthorizedException([
  1. String? message
])

Creates a new unauthorized exception.

Implementation

UnauthorizedException([final String? message])
    : super(message, 'Unauthorized: ');