using System;
namespace Renci.SshNet.Common
{
    /// 
    /// The exception that is thrown when SCP error occurred.
    /// 
    public partial class ProxyException : SshException
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public ProxyException()
        {
        }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The message.
        public ProxyException(string message)
            : base(message)
        {
        }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The message.
        /// The inner exception.
        public ProxyException(string message, Exception innerException) :
            base(message, innerException)
        {
        }
    }
}