Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Database / InvalidQueryException.php
1 <?php
2
3 namespace Drupal\Core\Database;
4
5 /**
6  * Exception thrown if a query would be invalid.
7  *
8  * This exception is thrown e.g. when trying to have an IN condition with an
9  * empty array.
10  */
11 class InvalidQueryException extends \InvalidArgumentException implements DatabaseException { }