TargetInvocationException Constructors

Definition

Initializes a new instance of the TargetInvocationException class.

Overloads

TargetInvocationException(Exception)

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

TargetInvocationException(String, Exception)

Initializes a new instance of the TargetInvocationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

TargetInvocationException(Exception)

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

public:
 TargetInvocationException(Exception ^ inner);
public TargetInvocationException (Exception inner);
public TargetInvocationException (Exception? inner);
new System.Reflection.TargetInvocationException : Exception -> System.Reflection.TargetInvocationException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.

Remarks

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or null if the InnerException property does not supply the inner exception value to the constructor.

The following table shows the initial property values for an instance of TargetInvocationException.

Property Value
InnerException The inner exception reference.
Message The error message string.

See also

Applies to

TargetInvocationException(String, Exception)

Initializes a new instance of the TargetInvocationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public:
 TargetInvocationException(System::String ^ message, Exception ^ inner);
public TargetInvocationException (string message, Exception inner);
public TargetInvocationException (string? message, Exception? inner);
new System.Reflection.TargetInvocationException : string * Exception -> System.Reflection.TargetInvocationException
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 the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.

Remarks

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or null if the InnerException property does not supply the inner exception value to the constructor.

The following table shows the initial property values for an instance of TargetInvocationException.

Property Value
InnerException The inner exception reference.
Message The error message string.

See also

Applies to