init
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Kreta.Web.Security
|
||||
{
|
||||
public class ClaimNotFoundException : Exception
|
||||
{
|
||||
public string ClaimType { get; set; }
|
||||
|
||||
public ClaimNotFoundException(string claimType)
|
||||
{
|
||||
ClaimType = claimType;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user