ExchangeDataException constructor (String, Exception)
The ExchangeDataException constructor creates a new ExchangeDataException object from an inner exception.
Namespace: Microsoft.Exchange.Data
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub New ( _
message As String, _
innerException As Exception _
)
'Usage
Dim message As String
Dim innerException As Exception
Dim instance As New ExchangeDataException(message, _
innerException)
public ExchangeDataException(
string message,
Exception innerException
)
Parameters
message
Type: System.StringThe error message for this ExchangeDataException object.
innerException
Type: System.ExceptionThe exception that caused this ExchangeDataException to be thrown.