mirror of
https://github.com/bitwarden/server
synced 2025-12-26 13:13:24 +00:00
* Refactor Core.Billing prior to adding new logic * Add ProviderBillingQueries.GetSubscriptionData * Add ProviderBillingController.GetSubscriptionAsync
10 lines
297 B
C#
10 lines
297 B
C#
namespace Bit.Core.Billing;
|
|
|
|
public class BillingException(
|
|
string clientFriendlyMessage,
|
|
string internalMessage = null,
|
|
Exception innerException = null) : Exception(internalMessage, innerException)
|
|
{
|
|
public string ClientFriendlyMessage { get; set; } = clientFriendlyMessage;
|
|
}
|