'Declaration
Public Function New( _ ByVal message As String, _ ByVal errorCode As Integer, _ ByVal qualifiedName As XmlQualifiedName2, _ ByVal inner As Exception _ )
'Usage
Dim message As String Dim errorCode As Integer Dim qualifiedName As XmlQualifiedName2 Dim inner As Exception Dim instance As New ExtendedCOMException(message, errorCode, qualifiedName, inner)
public ExtendedCOMException( string message, int errorCode, XmlQualifiedName2 qualifiedName, Exception inner )
public: ExtendedCOMException( String^ message, int errorCode, XmlQualifiedName2^ qualifiedName, Exception^ inner )
Parameters
- message
- The message that indicates the reason the exception occurred.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - errorCode
- The error code (HRESULT) value associated with this exception.
- qualifiedName
- The XML qualified name associated with this exception.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - inner
- The exception that is the cause of the current exception.
The value of this parameter can be
null
(Nothing
in Visual Basic).