mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Handle tax_id_invalid error (#4609)
This commit is contained in:
parent
56d6c91b25
commit
de1a816b07
@ -351,7 +351,14 @@ public class ProviderBillingService(
|
||||
: null
|
||||
};
|
||||
|
||||
return await stripeAdapter.CustomerCreateAsync(customerCreateOptions);
|
||||
try
|
||||
{
|
||||
return await stripeAdapter.CustomerCreateAsync(customerCreateOptions);
|
||||
}
|
||||
catch (StripeException stripeException) when (stripeException.StripeError?.Code == StripeConstants.ErrorCodes.TaxIdInvalid)
|
||||
{
|
||||
throw new BadRequestException("Your tax ID wasn't recognized for your selected country. Please ensure your country and tax ID are valid.");
|
||||
}
|
||||
}
|
||||
|
||||
public async Task<Subscription> SetupSubscription(
|
||||
|
@ -24,6 +24,7 @@ public static class StripeConstants
|
||||
public static class ErrorCodes
|
||||
{
|
||||
public const string CustomerTaxLocationInvalid = "customer_tax_location_invalid";
|
||||
public const string TaxIdInvalid = "tax_id_invalid";
|
||||
}
|
||||
|
||||
public static class PaymentMethodTypes
|
||||
|
Loading…
x
Reference in New Issue
Block a user