mirror of
https://github.com/bitwarden/server.git
synced 2025-04-27 15:52:13 -05: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;
|
|
}
|