IdentityNotMappedException Constructors
Definition
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 ()
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);
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.
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);
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.