1<?php 2 3namespace Elastica\Exception; 4 5/** 6 * JSON Parse exception. 7 * 8 * @deprecated since version 7.2.0, catch \JsonException instead 9 */ 10class JSONParseException extends \JsonException implements ExceptionInterface 11{ 12} 13