mirror of
https://github.com/bitwarden/server.git
synced 2025-04-08 22:58:11 -05:00
13 lines
274 B
C#
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.")
|
|
{
|
|
|
|
}
|
|
}
|