1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
bitwarden/src/Core/Exceptions/DuplicateAuthRequestException.cs
Gbubemi Smith 9703fb6874
[SG-762] Prevent approving request on second device after denying on first (#2370)
* Added check to ensure a passwordless request is not acted upon multiple times

* Corrected grammer
2022-10-28 11:58:05 -04:00

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.")
{
}
}