| TransferException Constructor (String, Exception) | 
  
    Namespace: 
   Microsoft.Azure.Storage.DataMovement
    Assembly:
   Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
 Syntax
Syntaxpublic TransferException(
	string message,
	Exception ex
)
Public Sub New ( 
	message As String,
	ex As Exception
)
public:
TransferException(
	String^ message, 
	Exception^ ex
)
new : 
        message : string * 
        ex : Exception -> TransferExceptionParameters
- message
- Type: SystemString
 The error message that explains the reason for the exception.
- ex
- Type: SystemException
 The exception that is the cause of the current exception, or a null reference
            if no inner exception is specified.
 See Also
See Also