Files
server/src/Core/Exceptions/InvalidGatewayCustomerIdException.cs
2022-08-29 16:06:55 -04:00

11 lines
204 B
C#

namespace Bit.Core.Exceptions;
public class InvalidGatewayCustomerIdException : Exception
{
public InvalidGatewayCustomerIdException()
: base("Invalid gateway customerId.")
{
}
}