Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ConnectException.php
01 <?php
02 namespace GuzzleHttp\Exception;
03
04 use Psr\Http\Message\RequestInterface;
05
06 /**
07 * Exception thrown when a connection cannot be established.
08 *
09 * Note that no response is present for a ConnectException
10 */
11 class ConnectException extends RequestException
12 {
13 public function __construct(
14 $message,
15 RequestInterface $request,
16 \Exception $previous = null,
17 array $handlerContext = []
18 ) {
19 parent::__construct($message, $request, null, $previous, $handlerContext);
20 }
21
22 /**
23 * @return null
24 */
25 public function getResponse()
26 {
27 return null;
28 }
29
30 /**
31 * @return bool
32 */
33 public function hasResponse()
34 {
35 return false;
36 }
37 }
38