Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
JsonSchema /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
ExceptionInterface.php
73
B
-rw-r--r--
2022-04-13 08:02
InvalidArgumentException.php
377
B
-rw-r--r--
2022-04-13 08:02
InvalidConfigException.php
337
B
-rw-r--r--
2022-04-13 08:02
InvalidSchemaException.php
334
B
-rw-r--r--
2022-04-13 08:02
InvalidSchemaMediaTypeException.php
343
B
-rw-r--r--
2022-04-13 08:02
InvalidSourceUriException.php
348
B
-rw-r--r--
2022-04-13 08:02
JsonDecodingException.php
1.21
KB
-rw-r--r--
2022-04-13 08:02
ResourceNotFoundException.php
340
B
-rw-r--r--
2022-04-13 08:02
RuntimeException.php
353
B
-rw-r--r--
2022-04-13 08:02
UnresolvableJsonPointerException.php
394
B
-rw-r--r--
2022-04-13 08:02
UriResolverException.php
330
B
-rw-r--r--
2022-04-13 08:02
ValidationException.php
281
B
-rw-r--r--
2022-04-13 08:02
Save
Rename
<?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); } }