IdentityNotMappedException
namespace System.Security.Principal
{
public sealed class IdentityNotMappedException : Exception
{
public IdentityReferenceCollection UnmappedIdentities {
get {
throw new PlatformNotSupportedException();
}
}
public IdentityNotMappedException()
{
throw new PlatformNotSupportedException();
}
public IdentityNotMappedException(string message)
{
throw new PlatformNotSupportedException();
}
public IdentityNotMappedException(string message, Exception inner)
{
throw new PlatformNotSupportedException();
}
}
}