Files
octokit.net/Octokit/Exceptions/LoginAttemptsExceededException.cs
2022-08-12 12:19:26 -05:00

56 lines
2.0 KiB
C#

using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.Serialization;
namespace Octokit
{
/// <summary>
/// Represents a "Login Attempts Exceeded" response returned from the API.
/// </summary>
[Serializable]
[SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors",
Justification = "These exceptions are specific to the GitHub API and not general purpose exceptions")]
public class LoginAttemptsExceededException : ForbiddenException
{
/// <summary>
/// Constructs an instance of LoginAttemptsExceededException
/// </summary>
/// <param name="response">The HTTP payload from the server</param>
public LoginAttemptsExceededException(IResponse response)
: base(response)
{
}
/// <summary>
/// Constructs an instance of LoginAttemptsExceededException
/// </summary>
/// <param name="response">The HTTP payload from the server</param>
/// <param name="innerException">The inner exception</param>
public LoginAttemptsExceededException(IResponse response, Exception innerException)
: base(response, innerException)
{
}
public override string Message
{
get { return ApiErrorMessageSafe ?? "Maximum number of login attempts exceeded"; }
}
/// <summary>
/// Constructs an instance of LoginAttemptsExceededException
/// </summary>
/// <param name="info">
/// The <see cref="SerializationInfo"/> that holds the
/// serialized object data about the exception being thrown.
/// </param>
/// <param name="context">
/// The <see cref="StreamingContext"/> that contains
/// contextual information about the source or destination.
/// </param>
protected LoginAttemptsExceededException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}