IpClientException is thrown by many methods of IpClient class. The methods are
masking various exception types into IpClientException, but the event
message will be propagated. In case that the cause for throwing
IpClientException is not exception but invalid client operation or server
response, IpClientException message will contain textual part of server response.
Namespace: Jscape.IpClientAssembly: Jscape.Ssh (in Jscape.Ssh.dll) Version: 2.7.2.0
Syntax
C# |
---|
public IpClientException(
string msg,
Exception cause
) |
Visual Basic |
---|
Public Sub New ( _
msg As String, _
cause As Exception _
) |
Visual C++ |
---|
public:
IpClientException(
String^ msg,
Exception^ cause
) |
Parameters
- msg
- Type: System..::..String
the message of exception
- cause
- Type: System..::..Exception
the exception which caused this exception
See Also