ProxyException
The exception that is thrown when a proxy connection cannot be established.
            
                using System;
using System.Runtime.CompilerServices;
namespace Renci.SshNet.Common
{
    [NullableContext(2)]
    [Nullable(0)]
    public class ProxyException : SshException
    {
        public ProxyException()
        {
        }
        public ProxyException(string message)
            : base(message)
        {
        }
        public ProxyException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
    }
}