ScpException
The exception that is thrown when an SCP error occurs.
using System;
using System.Runtime.CompilerServices;
namespace Renci.SshNet.Common
{
[NullableContext(2)]
[Nullable(0)]
public class ScpException : SshException
{
public ScpException()
{
}
public ScpException(string message)
: base(message)
{
}
public ScpException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}