Bristol SU Support Package
NoConnectionAvailable.php
Go to the documentation of this file.
1 <?php
2 
4 
5 use Throwable;
6 
10 class NoConnectionAvailable extends \Exception
11 {
12 
18  public function __construct($message = "No connection has been found", $code = 0, Throwable $previous = null)
19  {
20  parent::__construct($message, $code, $previous);
21  }
22 
23 }
__construct($message="No connection has been found", $code=0, Throwable $previous=null)