Commit af90b420 authored by Tobias Schultze's avatar Tobias Schultze

make dummy exception extend exception

parent e1bd04f8
......@@ -130,18 +130,13 @@ class RetryCallableExample
}
}
class DummyDriverException implements DriverException
class DummyDriverException extends \Exception implements DriverException
{
public function getErrorCode()
{
return 'code';
}
public function getMessage()
{
return 'message';
}
public function getSQLState()
{
return 'state';
......
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