1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-08 22:58:11 -05:00
bitwarden/src/Core/Auth/Exceptions/DuplicateAuthRequestException.cs

13 lines
274 B
C#

using Bit.Core.Exceptions;
namespace Bit.Core.Auth.Exceptions;
public class DuplicateAuthRequestException : BadRequestException
{
public DuplicateAuthRequestException()
: base("An authentication request with the same device already exists.")
{
}
}