IdentityNotMappedException 构造函数

定义

初始化 IdentityNotMappedException 类的新实例。

重载

名称 说明
IdentityNotMappedException()

初始化 IdentityNotMappedException 类的新实例。

IdentityNotMappedException(String)

使用指定的错误消息初始化类的新实例 IdentityNotMappedException

IdentityNotMappedException(String, Exception)

使用指定的错误消息和内部异常初始化类的新实例 IdentityNotMappedException

IdentityNotMappedException()

初始化 IdentityNotMappedException 类的新实例。

public:
 IdentityNotMappedException();
public IdentityNotMappedException();
Public Sub New ()

适用于

IdentityNotMappedException(String)

使用指定的错误消息初始化类的新实例 IdentityNotMappedException

public:
 IdentityNotMappedException(System::String ^ message);
public IdentityNotMappedException(string message);
new System.Security.Principal.IdentityNotMappedException : string -> System.Security.Principal.IdentityNotMappedException
Public Sub New (message As String)

参数

message
String

解释异常原因的错误消息。

适用于

IdentityNotMappedException(String, Exception)

使用指定的错误消息和内部异常初始化类的新实例 IdentityNotMappedException

public:
 IdentityNotMappedException(System::String ^ message, Exception ^ inner);
public IdentityNotMappedException(string message, Exception inner);
new System.Security.Principal.IdentityNotMappedException : string * Exception -> System.Security.Principal.IdentityNotMappedException
Public Sub New (message As String, inner As Exception)

参数

message
String

解释异常原因的错误消息。

inner
Exception

是当前异常原因的异常。 如果 inner 不是 null,则当前异常在处理内部异常的块中 catch 引发。

适用于