11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
namespace Doctrine\DBAL\Exception;
|
|
|
|
/**
|
|
* Base class for all connection related errors detected in the driver.
|
|
*/
|
|
class ConnectionException extends DriverException
|
|
{
|
|
}
|