You are here

QueryException.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/Query/QueryException.php

File

core/lib/Drupal/Core/Entity/Query/QueryException.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Entity\Query\QueryException.
 */
namespace Drupal\Core\Entity\Query;


/**
 * Exception thrown by Query() on unsupported query syntax.
 *
 * Some storage modules might not support the full range of the syntax for
 * conditions, and will raise a QueryException when an unsupported
 * condition was specified.
 */
class QueryException extends \Exception {

}

Classes

Namesort descending Description
QueryException Exception thrown by Query() on unsupported query syntax.