<PackageReference Include="SSH.NET" Version="2016.0.0-beta3" />
SshException
The exception that is thrown when SSH exception occurs.
using System;
namespace Renci.
SshNet.
Common
{
public class SshException :
Exception
{
public SshException()
{
}
public SshException(
string message)
:
base(
message)
{
}
public SshException(
string message,
Exception inner)
:
base(
message,
inner)
{
}
}
}