What is the message then? Try this code below to see.
<?php
if(self::$_triesValidateCoupon<8){
$redirectMsg = CouponHelper::ValidateCouponCode($this->couponCode, $prices['salesPrice']);
} else{
$redirectMsg = JText::_('COM_VIRTUEMART_CART_COUPON_TOO_MANY_TRIES');
}
exit($redirectMsg);
?>