Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
InvalidQueryException | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Database\InvalidQueryException. | |
*/ | |
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 { } |