InvalidArgumentException.php 454 B

123456789101112131415161718
  1. <?php
  2. namespace Elasticsearch\Common\Exceptions;
  3. /**
  4. * InvalidArgumentException
  5. *
  6. * Denote invalid or incorrect argument values
  7. *
  8. * @category Elasticsearch
  9. * @package Elasticsearch\Common\Exceptions
  10. * @author Zachary Tong <zach@elastic.co>
  11. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
  12. * @link http://elastic.co
  13. */
  14. class InvalidArgumentException extends \InvalidArgumentException implements ElasticsearchException
  15. {
  16. }