| 123456789101112131415161718 |
- <?php
- namespace Elasticsearch\Common\Exceptions;
- /**
- * InvalidArgumentException
- *
- * Denote invalid or incorrect argument values
- *
- * @category Elasticsearch
- * @package Elasticsearch\Common\Exceptions
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class InvalidArgumentException extends \InvalidArgumentException implements ElasticsearchException
- {
- }
|