1 | <?php |
||
10 | final class ConnectionNotFoundException extends \RuntimeException |
||
11 | { |
||
12 | /** |
||
13 | * @param string $connectionName |
||
14 | * @param string $protocol |
||
15 | * @param \Exception|null $previous |
||
16 | */ |
||
17 | 1 | public function __construct(string $connectionName, string $protocol, \Exception $previous = null) |
|
21 | } |
||
22 |