File size: 294 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Mautic\CoreBundle\Exception;

class DatabaseConnectionException extends \Exception
{
    public function __construct($message = 'Unable to connect to the database.', $code = 0, \Exception $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}