mirror of
https://github.com/bitwarden/server.git
synced 2025-06-19 02:23:48 -05:00
11 lines
204 B
C#
11 lines
204 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
public class InvalidGatewayCustomerIdException : Exception
|
|
{
|
|
public InvalidGatewayCustomerIdException()
|
|
: base("Invalid gateway customerId.")
|
|
{
|
|
|
|
}
|
|
}
|