| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace Elasticsearch\Common\Exceptions\Serializer;
- use Elasticsearch\Common\Exceptions\ElasticsearchException;
- /**
- * Class JsonErrorException
- *
- * @category Elasticsearch
- * @package Elasticsearch\Common\Exceptions\Curl
- * @author Bez Hermoso <bezalelhermoso@gmail.com>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class JsonErrorException extends \Exception implements ElasticsearchException
- {
- /**
- * @var mixed
- */
- private $input;
- /**
- * @var mixed
- */
- private $result;
- private static $messages = array(
- JSON_ERROR_DEPTH => 'The maximum stack depth has been exceeded',
- JSON_ERROR_STATE_MISMATCH => 'Invalid or malformed JSON',
- JSON_ERROR_CTRL_CHAR => 'Control character error, possibly incorrectly encoded',
- JSON_ERROR_SYNTAX => 'Syntax error',
- JSON_ERROR_UTF8 => 'Malformed UTF-8 characters, possibly incorrectly encoded',
- JSON_ERROR_RECURSION => 'One or more recursive references in the value to be encoded',
- JSON_ERROR_INF_OR_NAN => 'One or more NAN or INF values in the value to be encoded',
- JSON_ERROR_UNSUPPORTED_TYPE => 'A value of a type that cannot be encoded was given',
- // JSON_ERROR_* constant values that are available on PHP >= 7.0
- 9 => 'Decoding of value would result in invalid PHP property name', //JSON_ERROR_INVALID_PROPERTY_NAME
- 10 => 'Attempted to decode nonexistent UTF-16 code-point' //JSON_ERROR_UTF16
- );
- public function __construct($code, $input, $result, $previous = null)
- {
- if (isset(self::$messages[$code]) !== true) {
- throw new \InvalidArgumentException(sprintf('Encountered unknown JSON error code: [%d]', $code));
- }
- parent::__construct(self::$messages[$code], $code, $previous);
- $this->input = $input;
- $this->result = $result;
- }
- /**
- * @return mixed
- */
- public function getInput()
- {
- return $this->input;
- }
- /**
- * @return mixed
- */
- public function getResult()
- {
- return $this->result;
- }
- }
|