mirror of
https://github.com/bitwarden/server.git
synced 2025-06-29 15:16:15 -05:00
12 lines
371 B
C#
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;
|
|
}
|