CompositionException Constructors

Definition

Initializes a new instance of the CompositionException class.

Overloads

CompositionException()

Initializes a new instance of the CompositionException class.

CompositionException(IEnumerable<CompositionError>)

Initializes a new instance of the CompositionException class with the specified collection of composition errors.

CompositionException(String)

Initializes a new instance of the CompositionException class with the specified error message.

CompositionException(String, Exception)

Initializes a new instance of the CompositionException class with the specified error message and the exception that is the cause of this exception.

CompositionException()

Initializes a new instance of the CompositionException class.

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

Applies to

CompositionException(IEnumerable<CompositionError>)

Initializes a new instance of the CompositionException class with the specified collection of composition errors.

public:
 CompositionException(System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::CompositionError ^> ^ errors);
public CompositionException (System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.CompositionError> errors);
public CompositionException (System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.CompositionError>? errors);
new System.ComponentModel.Composition.CompositionException : seq<System.ComponentModel.Composition.CompositionError> -> System.ComponentModel.Composition.CompositionException
Public Sub New (errors As IEnumerable(Of CompositionError))

Parameters

errors
IEnumerable<CompositionError>

A collection of CompositionError objects that represent problems during composition.

Exceptions

errors contains an element that is null.

Applies to

CompositionException(String)

Initializes a new instance of the CompositionException class with the specified error message.

public:
 CompositionException(System::String ^ message);
public CompositionException (string message);
public CompositionException (string? message);
new System.ComponentModel.Composition.CompositionException : string -> System.ComponentModel.Composition.CompositionException
Public Sub New (message As String)

Parameters

message
String

A message that describes the CompositionException or null to set the Message property to its default value.

Applies to

CompositionException(String, Exception)

Initializes a new instance of the CompositionException class with the specified error message and the exception that is the cause of this exception.

public:
 CompositionException(System::String ^ message, Exception ^ innerException);
public CompositionException (string message, Exception innerException);
public CompositionException (string? message, Exception? innerException);
new System.ComponentModel.Composition.CompositionException : string * Exception -> System.ComponentModel.Composition.CompositionException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A message that describes the CompositionException or null to set the Message property to its default value.

innerException
Exception

The exception that is the underlying cause of the CompositionException or null to set the InnerException property to null.

Applies to