14 lines
273 B
C#
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;
|
|
}
|
|
}
|
|
}
|