mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
11 lines
231 B
C#
11 lines
231 B
C#
|
|
namespace Bit.Core.Exceptions;
|
|||
|
|
|
|||
|
|
public class DuplicateAuthRequestException : Exception
|
|||
|
|
{
|
|||
|
|
public DuplicateAuthRequestException()
|
|||
|
|
: base("An authentication request with the same device already exists.")
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|