1<?php 2 3declare(strict_types = 1); 4 5namespace Elasticsearch\Common\Exceptions; 6 7/** 8 * BadMethodCallException 9 * 10 * Denote problems with a method call (e.g. incorrect number of arguments) 11 * 12 * @category Elasticsearch 13 * @package Elasticsearch\Common\Exceptions 14 * @author Zachary Tong <zach@elastic.co> 15 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 16 * @link http://elastic.co 17 */ 18class BadMethodCallException extends \BadMethodCallException implements ElasticsearchException 19{ 20} 21