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.188.171.53
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
jms /
serializer /
src /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
CircularReferenceDetectedException.php
199
B
-rw-rw-r--
2022-08-24 15:26
Exception.php
216
B
-rw-rw-r--
2022-08-24 15:26
ExcludedClassException.php
187
B
-rw-rw-r--
2022-08-24 15:26
ExpressionLanguageRequiredException.php
192
B
-rw-rw-r--
2022-08-24 15:26
InvalidArgumentException.php
273
B
-rw-rw-r--
2022-08-24 15:26
InvalidMetadataException.php
249
B
-rw-rw-r--
2022-08-24 15:26
LogicException.php
243
B
-rw-rw-r--
2022-08-24 15:26
NonCastableTypeException.php
650
B
-rw-rw-r--
2022-08-24 15:26
NonFloatCastableTypeException.php
290
B
-rw-rw-r--
2022-08-24 15:26
NonIntCastableTypeException.php
286
B
-rw-rw-r--
2022-08-24 15:26
NonStringCastableTypeException.php
292
B
-rw-rw-r--
2022-08-24 15:26
NonVisitableTypeException.php
528
B
-rw-rw-r--
2022-08-24 15:26
NotAcceptableException.php
179
B
-rw-rw-r--
2022-08-24 15:26
ObjectConstructionException.php
258
B
-rw-rw-r--
2022-08-24 15:26
RuntimeException.php
491
B
-rw-rw-r--
2022-08-24 15:26
SkipHandlerException.php
267
B
-rwxr-xr-x
2022-08-24 15:26
UninitializedPropertyException.php
157
B
-rw-rw-r--
2022-08-24 15:26
UnsupportedFormatException.php
140
B
-rw-rw-r--
2022-08-24 15:26
ValidationFailedException.php
609
B
-rw-rw-r--
2022-08-24 15:26
XmlErrorException.php
912
B
-rw-rw-r--
2022-08-24 15:26
Save
Rename
<?php declare(strict_types=1); namespace JMS\Serializer\Exception; class XmlErrorException extends RuntimeException { /** * @var \LibXMLError */ private $xmlError; public function __construct(\LibXMLError $error) { switch ($error->level) { case LIBXML_ERR_WARNING: $level = 'WARNING'; break; case LIBXML_ERR_FATAL: $level = 'FATAL'; break; case LIBXML_ERR_ERROR: $level = 'ERROR'; break; default: $level = 'UNKNOWN'; } parent::__construct(sprintf('[%s] %s in %s (line: %d, column: %d)', $level, $error->message, $error->file, $error->line, $error->column)); $this->xmlError = $error; } public function getXmlError(): \LibXMLError { return $this->xmlError; } }