public TransferException(TransferErrorType type, string message, Exception innerException = null) : base(message, innerException) { Type = type; }
public KfsTransferError(TransferErrorType type, KfsFileTransfer fileTransfer, String reason) { Type = type; FileTransfer = fileTransfer; Reason = reason; }