UnauthorizedException constructor

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

Implementation

const UnauthorizedException({
  super.message,
  super.error,
});