mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
32 lines
715 B
C#
32 lines
715 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Octokit
|
|
{
|
|
#if !NETFX_CORE
|
|
[Serializable]
|
|
#endif
|
|
public class TwoFactorChallengeFailedException : AuthorizationException
|
|
{
|
|
public TwoFactorChallengeFailedException()
|
|
{
|
|
}
|
|
|
|
public TwoFactorChallengeFailedException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public TwoFactorChallengeFailedException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
#if !NETFX_CORE
|
|
protected TwoFactorChallengeFailedException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
#endif
|
|
}
|
|
}
|