IdentityNotMappedException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the IdentityNotMappedException class.
Overloads
IdentityNotMappedException() |
Initializes a new instance of the IdentityNotMappedException class. |
IdentityNotMappedException(String) |
Initializes a new instance of the IdentityNotMappedException class by using the specified error message. |
IdentityNotMappedException(String, Exception) |
Initializes a new instance of the IdentityNotMappedException class by using the specified error message and inner exception. |
IdentityNotMappedException()
Initializes a new instance of the IdentityNotMappedException class.
public:
IdentityNotMappedException();
public IdentityNotMappedException ();
Public Sub New ()
Applies to
IdentityNotMappedException(String)
Initializes a new instance of the IdentityNotMappedException class by using the specified error message.
public:
IdentityNotMappedException(System::String ^ message);
public IdentityNotMappedException (string? message);
public IdentityNotMappedException (string message);
new System.Security.Principal.IdentityNotMappedException : string -> System.Security.Principal.IdentityNotMappedException
Public Sub New (message As String)
Parameters
- message
- String
The error message that explains the reason for the exception.
Applies to
IdentityNotMappedException(String, Exception)
Initializes a new instance of the IdentityNotMappedException class by using the specified error message and inner exception.
public:
IdentityNotMappedException(System::String ^ message, Exception ^ inner);
public IdentityNotMappedException (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)
Parameters
- message
- String
The error message that explains the reason for the exception.
- inner
- Exception
The exception that is the cause of the current exception. If inner
is not null, the current exception is raised in a catch
block that handles the inner exception.