1
0
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:
Alex Morask 2024-08-09 14:13:54 -04:00 committed by GitHub
parent 56d6c91b25
commit de1a816b07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -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(

View File

@ -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