Facile\DoctrineMySQLComeBack\Doctrine\DBAL\Driver\ServerGoneAwayExceptionsAwareTrait::isGoneAwayInUpdateException PHP Method

isGoneAwayInUpdateException() public method

public isGoneAwayInUpdateException ( Exception $exception ) : boolean
$exception Exception
return boolean
    public function isGoneAwayInUpdateException(\Exception $exception)
    {
        $message = $exception->getMessage();
        foreach ($this->goneAwayInUpdateExceptions as $goneAwayException) {
            if (stripos($message, $goneAwayException) !== false) {
                return true;
            }
        }
        return false;
    }
ServerGoneAwayExceptionsAwareTrait