'Declaration
Public Function New( _ ByVal message As String, _ ByVal innerException As Exception _ )
'Usage
Dim message As String Dim innerException As Exception Dim instance As New OperationException(message, innerException)
public OperationException( string message, Exception innerException )
public: OperationException( String^ message, Exception^ innerException )
Parameters
- message
- The message that describes the error.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - innerException
- The exception that is the cause of the current exception.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).