Replaces them with Dbal\ConnectionException. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
12 lines
125 B
PHP
12 lines
125 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Dbal;
|
|
|
|
use Exception;
|
|
|
|
class ConnectionException extends Exception
|
|
{
|
|
}
|