From de1a816b0731eada998820a3dab1a9ffdeb597c5 Mon Sep 17 00:00:00 2001 From: Alex Morask <144709477+amorask-bitwarden@users.noreply.github.com> Date: Fri, 9 Aug 2024 14:13:54 -0400 Subject: [PATCH] Handle tax_id_invalid error (#4609) --- .../Commercial.Core/Billing/ProviderBillingService.cs | 9 ++++++++- src/Core/Billing/Constants/StripeConstants.cs | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs b/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs index d6bee10f39..c38c8fbb4f 100644 --- a/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs +++ b/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs @@ -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 SetupSubscription( diff --git a/src/Core/Billing/Constants/StripeConstants.cs b/src/Core/Billing/Constants/StripeConstants.cs index 026638ecd1..53e9baf069 100644 --- a/src/Core/Billing/Constants/StripeConstants.cs +++ b/src/Core/Billing/Constants/StripeConstants.cs @@ -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