Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
| FieldsOverlapException | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Database\Query\FieldsOverlapException. | |
| */ | |
| namespace Drupal\Core\Database\Query; | |
| use Drupal\Core\Database\DatabaseException; | |
| /** | |
| * Exception thrown if an insert query specifies a field twice. | |
| * | |
| * It is not allowed to specify a field as default and insert field, this | |
| * exception is thrown if that is the case. | |
| */ | |
| class FieldsOverlapException extends \InvalidArgumentException implements DatabaseException {} |