File: Error.cs
Web Access
Project: src\src\DataProtection\Abstractions\src\Microsoft.AspNetCore.DataProtection.Abstractions.csproj (Microsoft.AspNetCore.DataProtection.Abstractions)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Security.Cryptography;
using Microsoft.AspNetCore.DataProtection.Abstractions;
 
namespace Microsoft.AspNetCore.DataProtection;
 
internal static class Error
{
    public static CryptographicException CryptCommon_GenericError(Exception? inner = null)
    {
        return new CryptographicException(Resources.CryptCommon_GenericError, inner);
    }
 
    public static CryptographicException CryptCommon_PayloadInvalid()
    {
        string message = Resources.CryptCommon_PayloadInvalid;
        return new CryptographicException(message);
    }
}