// FIXME: Update this file to be null safe and then delete the line below #nullable disable 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; }