/var/www/hkosl.com/littleark/webadmin/libraies/illuminate/database/DetectsLostConnections.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php

namespace Illuminate\Database;

use 
Exception;
use 
Illuminate\Support\Str;

trait DetectsLostConnections
{
    
/**
     * Determine if the given exception was caused by a lost connection.
     *
     * @param  \Exception  $e
     * @return bool
     */
    
protected function causedByLostConnection(Exception $e)
    {
        
$message $e->getMessage();

        return 
Str::contains($message, [
            
'server has gone away',
            
'no connection to the server',
            
'Lost connection',
            
'is dead or not enabled',
            
'Error while sending',
            
'decryption failed or bad record mac',
            
'server closed the connection unexpectedly',
            
'SSL connection has been closed unexpectedly',
            
'Error writing data to the connection',
            
'Resource deadlock avoided',
        ]);
    }
}