AuthException constructor

AuthException({
  1. dynamic message = 'Not Fount 404',
  2. int code = HttpStatus.forbidden,
  3. RespondType responseType = RespondType.json,
})

Implementation

AuthException({
  super.message = 'Not Fount 404',
  super.code = HttpStatus.forbidden,
  super.responseType = RespondType.json,
});