DocSpace-buildtools/common/ASC.Core.Common/Security/BruteForceCredentialException.cs

19 lines
419 B
C#
Raw Normal View History

2019-08-12 10:53:12 +00:00
using System;
using System.Collections.Generic;
using System.Security.Authentication;
using System.Text;
namespace ASC.Core.Common.Security
{
public class BruteForceCredentialException : InvalidCredentialException
{
public BruteForceCredentialException()
{
}
public BruteForceCredentialException(string message) : base(message)
{
}
}
}