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