blob: 3cf39911d9d12a15c05cdbba36d16b5fd09187ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace Elastica\Exception;
/**
* JSON Parse exception
*
* @package Elastica
*/
class JSONParseException extends \RuntimeException implements ExceptionInterface
{
}
|