Files
octokit.net/Octokit/Exceptions/TwoFactorChallengeFailedException.cs
Haacked 33ad79c0fe Implement GetOrCreateApplicationAuthentication
Implements the endpoint for creating an application authorization token.
2013-10-09 19:54:05 -07:00

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
}
}