Freigeben über


COMException-Konstruktor: (String, Exception)

 

Veröffentlicht: Oktober 2016

Initialisiert eine neue Instanz der COMException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

Syntax

public COMException(
    string message,
    Exception inner
)
public:
COMException(
    String^ message,
    Exception^ inner
)
new : 
        message:string *
        inner:Exception -> COMException
Public Sub New (
    message As String,
    inner As Exception
)

Parameter

  • message
    Type: System.String

    Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.

  • inner
    Type: System.Exception

    Die Ausnahme, die die Ursache der aktuellen Ausnahme ist. Wenn der inner-Parameter nicht null ist, wird die aktuelle Ausnahme in einem catch-Block ausgelöst, der die innere Ausnahme behandelt.

Hinweise

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

The following table shows how this constructor sets the properties of the T:System.Exception object.

Property

Value

InnerException

The inner exception reference.

Message

The error message string.

Versionsinformationen

Universelle Windows-Plattform
Verfügbar seit 8
.NET Framework
Verfügbar seit 1.1
Portierbare Klassenbibliothek
Unterstützt in: portierbare .NET-Plattformen
Windows Phone
Verfügbar seit 8.1

Siehe auch

Exception
COMException Überladen
COMException-Klasse
System.Runtime.InteropServices-Namespace
Behandeln und Auslösen von Ausnahmen

Zurück zum Anfang