mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
15 lines
464 B
C#
15 lines
464 B
C#
// 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;
|
|
}
|