Share via


UserRoleAdministratorAlreadyExistsException Constructors

Definition

Overloads

UserRoleAdministratorAlreadyExistsException()

Initializes a new UserRoleAdministratorAlreadyExistsException object.

UserRoleAdministratorAlreadyExistsException(Exception)

Initializes a new UserRoleAdministratorAlreadyExistsException object by specifying an inner exception that caused the current exception.

UserRoleAdministratorAlreadyExistsException(String)

Initializes a new UserRoleAdministratorAlreadyExistsException object by specifying the error message that describes the current exception.

UserRoleAdministratorAlreadyExistsException(SerializationInfo, StreamingContext)

Initializes a new UserRoleAdministratorAlreadyExistsException object with serialized data.

UserRoleAdministratorAlreadyExistsException(String, Exception)

Initializes a new UserRoleAdministratorAlreadyExistsException object with an error message and inner exception.

UserRoleAdministratorAlreadyExistsException()

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

Applies to

UserRoleAdministratorAlreadyExistsException(Exception)

Initializes a new UserRoleAdministratorAlreadyExistsException object by specifying an inner exception that caused the current exception.

public:
 UserRoleAdministratorAlreadyExistsException(Exception ^ inner);
public UserRoleAdministratorAlreadyExistsException (Exception inner);
new Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException : Exception -> Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The Exception instance that caused the current exception.

Applies to

UserRoleAdministratorAlreadyExistsException(String)

Initializes a new UserRoleAdministratorAlreadyExistsException object by specifying the error message that describes the current exception.

public:
 UserRoleAdministratorAlreadyExistsException(System::String ^ message);
public UserRoleAdministratorAlreadyExistsException (string message);
new Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException : string -> Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException
Public Sub New (message As String)

Parameters

message
String

The error message that describes the current exception.

Applies to

UserRoleAdministratorAlreadyExistsException(SerializationInfo, StreamingContext)

Initializes a new UserRoleAdministratorAlreadyExistsException object with serialized data.

protected:
 UserRoleAdministratorAlreadyExistsException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected UserRoleAdministratorAlreadyExistsException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The SerializationInfo object that holds the serialized object data about the exception being thrown.

context
StreamingContext

The StreamingContext object that contains contextual information about the source or destination.

Remarks

This constructor is called during deserialization to reconstitute the exception object that is transmitted over a stream.

Applies to

UserRoleAdministratorAlreadyExistsException(String, Exception)

Initializes a new UserRoleAdministratorAlreadyExistsException object with an error message and inner exception.

public:
 UserRoleAdministratorAlreadyExistsException(System::String ^ message, Exception ^ inner);
public UserRoleAdministratorAlreadyExistsException (string message, Exception inner);
new Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException : string * Exception -> Microsoft.EnterpriseManagement.Common.UserRoleAdministratorAlreadyExistsException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that describes the current exception.

inner
Exception

The Exception instance that caused the current exception.

Applies to