UnexpectedValueException.php 470 B

123456789101112131415161718
  1. <?php
  2. namespace Elasticsearch\Common\Exceptions;
  3. /**
  4. * UnexpectedValueException
  5. *
  6. * Denote a value that is outside the normally accepted 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 UnexpectedValueException extends \UnexpectedValueException implements ElasticsearchException
  15. {
  16. }