Commit 90cf171c authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub

Merge pull request #2786 from SpacePossum/patch-1

AbstractMySQLDriver - Map 1429 to ConnectionException
parents 5c5966aa 27d56e83
...@@ -102,6 +102,7 @@ abstract class AbstractMySQLDriver implements Driver, ExceptionConverterDriver, ...@@ -102,6 +102,7 @@ abstract class AbstractMySQLDriver implements Driver, ExceptionConverterDriver,
case '1143': case '1143':
case '1227': case '1227':
case '1370': case '1370':
case '1429':
case '2002': case '2002':
case '2005': case '2005':
return new Exception\ConnectionException($message, $exception); return new Exception\ConnectionException($message, $exception);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment