AuthorizationException constructor

AuthorizationException(
  1. ErrorResponse errorResponse, {
  2. StackTrace? stackTrace,
  3. int? statusCode,
  4. dynamic error,
})

Implementation

AuthorizationException(this.errorResponse,
    {StackTrace? stackTrace, int? statusCode, dynamic error})
    : super(
          stackTrace: stackTrace,
          message: '',
          error: error,
          statusCode: statusCode ?? 400);