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