1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-19 02:23:48 -05:00
bitwarden/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.")
{
}
}