InvalidQueryException.php 287 B

1234567891011
  1. <?php
  2. namespace Drupal\Core\Database;
  3. /**
  4. * Exception thrown if a query would be invalid.
  5. *
  6. * This exception is thrown e.g. when trying to have an IN condition with an
  7. * empty array.
  8. */
  9. class InvalidQueryException extends \InvalidArgumentException implements DatabaseException {}