AuthServerExceptions constructor

AuthServerExceptions(
  1. String message,
  2. String code, {
  3. int errorCode = HttpStatus.badRequest,
})

Implementation

AuthServerExceptions(
  this.message,
  this.code, {
  this.errorCode = HttpStatus.badRequest,
}) : super(code, errorCode: errorCode);