You are here

InvalidQueryException.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/Database/InvalidQueryException.php

File

core/lib/Drupal/Core/Database/InvalidQueryException.php
View source
<?php

namespace Drupal\Core\Database;


/**
 * Exception thrown if a query would be invalid.
 *
 * This exception is thrown e.g. when trying to have an IN condition with an
 * empty array.
 */
class InvalidQueryException extends \InvalidArgumentException implements DatabaseException {

}

Classes

Namesort descending Description
InvalidQueryException Exception thrown if a query would be invalid.