mirror of
https://github.com/bitwarden/server.git
synced 2026-02-10 02:43:17 +08:00
14 lines
249 B
C#
14 lines
249 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Exceptions
|
|||
|
|
{
|
|||
|
|
public class InvalidGatewayCustomerIdException : Exception
|
|||
|
|
{
|
|||
|
|
public InvalidGatewayCustomerIdException()
|
|||
|
|
: base("Invalid gateway customerId.")
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|