UnauthorizedException constructor

UnauthorizedException({
  1. String? message,
  2. int? code,
})

Implementation

UnauthorizedException({String? message, int? code})
    : super(
          name: (UnauthorizedException).toString(),
          code: code,
          message: message);