Files
server/src/Core/Exceptions/InvalidGatewayCustomerIdException.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
234 B
C#
Raw Normal View History

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