UnauthorizedException constructor

UnauthorizedException(
  1. String message
)

Creates an UnauthorizedException with the given error message.

Implementation

UnauthorizedException(String message) : super(message, statusCode: 401);