Share via


InvalidRelationshipEndpointException Constructors

Definition

Initializes a new instance of the InvalidRelationshipEndpointException class.

Overloads

InvalidRelationshipEndpointException()

Initializes a new instance of the InvalidRelationshipEndpointException class.

InvalidRelationshipEndpointException(Exception)

Initializes a new instance of the InvalidRelationshipEndpointException class using a reference to the inner exception that is the cause of this exception.

InvalidRelationshipEndpointException(String)

Initializes a new instance of the InvalidRelationshipEndpointException class using the specified error message.

InvalidRelationshipEndpointException(SerializationInfo, StreamingContext)

Initializes a new instance of the InvalidRelationshipEndpointException class using serialized data.

InvalidRelationshipEndpointException(String, Exception)

Initializes a new instance of the InvalidRelationshipEndpointException class using the specified message and a reference to the inner exception that is the cause of this exception.

InvalidRelationshipEndpointException()

Initializes a new instance of the InvalidRelationshipEndpointException class.

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

Applies to

InvalidRelationshipEndpointException(Exception)

Initializes a new instance of the InvalidRelationshipEndpointException class using a reference to the inner exception that is the cause of this exception.

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

Parameters

inner
Exception

The exception that is the cause of the current exception.

Applies to

InvalidRelationshipEndpointException(String)

Initializes a new instance of the InvalidRelationshipEndpointException class using the specified error message.

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

Parameters

message
String

The error message that states the current exception.

Applies to

InvalidRelationshipEndpointException(SerializationInfo, StreamingContext)

Initializes a new instance of the InvalidRelationshipEndpointException class using serialized data.

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

Parameters

info
SerializationInfo

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

context
StreamingContext

The contextual information about the source or destination of the serialized object.

Applies to

InvalidRelationshipEndpointException(String, Exception)

Initializes a new instance of the InvalidRelationshipEndpointException class using the specified message and a reference to the inner exception that is the cause of this exception.

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

Parameters

message
String

The error message that states the current exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to