13 lines
164 B
PHP
13 lines
164 B
PHP
<?php
|
|
|
|
namespace Doctrine\DBAL\Driver;
|
|
|
|
/**
|
|
* @deprecated Use {@link Exception} instead
|
|
*
|
|
* @psalm-immutable
|
|
*/
|
|
interface DriverException extends Exception
|
|
{
|
|
}
|