<PackageReference Include="SSH.NET" Version="2024.2.0" />

SftpPathNotFoundException

The exception that is thrown when file or directory is not found.
using System; namespace Renci.SshNet.Common { public class SftpPathNotFoundException : SshException { public SftpPathNotFoundException() { } public SftpPathNotFoundException(string message) : base(message) { } public SftpPathNotFoundException(string message, Exception innerException) : base(message, innerException) { } } }