using System;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Net;
using System.Runtime.Serialization;
namespace Octokit
{
///
/// Represents a HTTP 422 - Unprocessable Entity response returned from the API.
///
[Serializable]
[SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors",
Justification = "These exceptions are specific to the GitHub API and not general purpose exceptions")]
public class ApiValidationException : ApiException
{
///
/// Constructs an instance of ApiValidationException
///
public ApiValidationException() : base((HttpStatusCode)422, null)
{
}
///
/// Constructs an instance of ApiValidationException
///
/// The HTTP payload from the server
public ApiValidationException(IResponse response)
: this(response, null)
{
}
///
/// Constructs an instance of ApiValidationException
///
/// The HTTP payload from the server
/// The inner exception
public ApiValidationException(IResponse response, Exception innerException)
: base(response, innerException)
{
Debug.Assert(response != null && response.StatusCode == (HttpStatusCode)422,
"ApiValidationException created with wrong status code");
}
///
/// Constructs an instance of ApiValidationException
///
/// The inner exception
protected ApiValidationException(ApiException innerException)
: base(innerException)
{
}
public override string Message
{
get { return ApiErrorMessageSafe ?? "Validation Failed"; }
}
///
/// Constructs an instance of ApiValidationException
///
///
/// The that holds the
/// serialized object data about the exception being thrown.
///
///
/// The that contains
/// contextual information about the source or destination.
///
protected ApiValidationException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}