QueryException.php 328 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\Entity\Query;
  3. /**
  4. * Exception thrown by Query() on unsupported query syntax.
  5. *
  6. * Some storage modules might not support the full range of the syntax for
  7. * conditions, and will raise a QueryException when an unsupported
  8. * condition was specified.
  9. */
  10. class QueryException extends \Exception {}