kreta/KretaWeb/Security/ClaimNotFoundException.cs
2024-03-13 00:33:46 +01:00

14 lines
273 B
C#

using System;
namespace Kreta.Web.Security
{
public class ClaimNotFoundException : Exception
{
public string ClaimType { get; set; }
public ClaimNotFoundException(string claimType)
{
ClaimType = claimType;
}
}
}