RoutingMissingException.php 469 B

1234567891011121314151617
  1. <?php
  2. namespace Elasticsearch\Common\Exceptions;
  3. /**
  4. * RoutingMissingException, thrown on when a routing value is required but
  5. * not provided
  6. *
  7. * @category Elasticsearch
  8. * @package Elasticsearch\Common\Exceptions
  9. * @author Zachary Tong <zach@elastic.co>
  10. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
  11. * @link http://elastic.co
  12. */
  13. class RoutingMissingException extends ServerErrorResponseException implements ElasticsearchException
  14. {
  15. }