mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 19:33:21 +08:00
10 lines
274 B
C#
10 lines
274 B
C#
|
|
namespace Bit.Core.AdminConsole.OrganizationAuth.Models;
|
|||
|
|
|
|||
|
|
public class AuthRequestUpdateProcessingException : Exception
|
|||
|
|
{
|
|||
|
|
public AuthRequestUpdateProcessingException() { }
|
|||
|
|
|
|||
|
|
public AuthRequestUpdateProcessingException(string message)
|
|||
|
|
: base(message) { }
|
|||
|
|
}
|