Creates an exception with the specified message string and the innner exception.

Namespace: Jscape.Ftp
Assembly: Jscape.Ftp (in Jscape.Ftp.dll) Version: 2.4.5.0

Syntax

C#
public FtpException(
	string msg,
	Exception e
)
Visual Basic
Public Sub New ( _
	msg As String, _
	e As Exception _
)
Visual C++
public:
FtpException(
	String^ msg, 
	Exception^ e
)

Parameters

msg
Type: System..::..String
The message of the exception.
e
Type: System..::..Exception
The innner exception.

See Also