Two or more Condition Expression

it is possible to add two or more condition expression in a sequence flow ?

now i have only one and in the xml is create a line with my condition

ex:

<bpmn:sequenceFlow id="SequenceFlow_09isfxu" targetRef="Task_16mvme9" sourceRef="ExclusiveGateway_04c0ao8">
  <bpmn:conditionExpression xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bpmn:tFormalExpression" >$A</bpmn:conditionExpression>
</bpmn:sequenceFlow>

what i want is something like this

<bpmn:sequenceFlow id="SequenceFlow_09isfxu" targetRef="Task_16mvme9" sourceRef="ExclusiveGateway_04c0ao8">
  <bpmn:conditionExpression xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bpmn:tFormalExpression">$A</bpmn:conditionExpression>
  <bpmn:conditionExpression xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bpmn:tFormalExpression">$B</bpmn:conditionExpression>
</bpmn:sequenceFlow>

thank you.

Not supported according to BPMN schema. What’s the use-case for having more than one condition expression anyway?