_Exception.InnerException Property

Definition

Provides COM objects with version-independent access to the InnerException property.

public:
 property Exception ^ InnerException { Exception ^ get(); };
public Exception InnerException { get; }
member this.InnerException : Exception
Public ReadOnly Property InnerException As Exception

Property Value

An instance of Exception that describes the error that caused the current exception. The InnerException property returns the same value that was passed to the constructor, or a null reference (Nothing in Visual Basic) if the inner exception value was not supplied to the constructor. This property is read-only.

Remarks

This method is for access to managed classes from unmanaged code and should not be called from managed code.

The Exception.InnerException property gets the Exception instance that caused the current exception.

Applies to

See also