Renci.SshNet.Common.SftpPathNotFoundException
The exception that is thrown when file or directory is not found.
namespace Renci.SshNet.Common
{
public class SftpPathNotFoundException : SftpException
{
public string Path { get; }
public SftpPathNotFoundException();
public SftpPathNotFoundException(string message);
public SftpPathNotFoundException(string message, string path);
public SftpPathNotFoundException(string message, Exception innerException);
public SftpPathNotFoundException(string message, string path, Exception innerException);
}
}