'additionalInformation' =>
$additionalInformation,
'orderTransactionId' =>
$orderTransactionId,
],
$e );
} public static function invalidOrder(string
$orderId, ?\Throwable
$e = null
): self
{ if (!Feature::
isActive('v6.6.0.0'
)) { return new InvalidOrderException($orderId,
$e);
} return new self( Response::HTTP_NOT_FOUND,
self::PAYMENT_INVALID_ORDER_ID,
'The order with id {{ orderId }} is invalid or could not be found.',
[ 'orderId' =>
$orderId,
],
$e );
}