// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace Microsoft.AspNetCore.Antiforgery
{
///
/// The that is thrown when the antiforgery token validation fails.
///
public class AntiforgeryValidationException : Exception
{
///
/// Creates a new instance of with the specified
/// exception .
///
/// The message that describes the error.
public AntiforgeryValidationException(string message)
: base(message)
{
}
}
}