UnauthorizedException constructor

UnauthorizedException({
  1. String message = "Unauthorized Access",
})

Implementation

UnauthorizedException({String message = "Unauthorized Access"})
  : super(message: message, statusCode: 401);