1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-29 15:16:15 -05:00
bitwarden/src/Core/Billing/BillingException.cs
Alex Morask 052235bed6
[PM-15048] Update bank account verification to use descriptor code (#5048)
* Update verify bank account process to use descriptor code

* Run dotnet format
2024-11-20 14:36:50 -05:00

12 lines
371 B
C#

namespace Bit.Core.Billing;
public class BillingException(
string response = null,
string message = null,
Exception innerException = null) : Exception(message, innerException)
{
public const string DefaultMessage = "Something went wrong with your request. Please contact support.";
public string Response { get; } = response ?? DefaultMessage;
}