Commit adb83178 authored by Steve Müller's avatar Steve Müller

add missing MySQL exception for travis

parent 47b0aec4
......@@ -132,6 +132,7 @@ class Driver implements DriverInterface, ExceptionConverterDriver
case '1143':
case '1227':
case '1370':
case '2002':
case '2005':
return DBALException::ERROR_ACCESS_DENIED;
......
......@@ -181,6 +181,7 @@ class Driver implements \Doctrine\DBAL\Driver, ExceptionConverterDriver
case '1143':
case '1227':
case '1370':
case '2002':
case '2005':
return DBALException::ERROR_ACCESS_DENIED;
......
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