class FieldsOverlapException in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Query/FieldsOverlapException.php \Drupal\Core\Database\Query\FieldsOverlapException
- 9 core/lib/Drupal/Core/Database/Query/FieldsOverlapException.php \Drupal\Core\Database\Query\FieldsOverlapException
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.
Hierarchy
- class \Drupal\Core\Database\Query\FieldsOverlapException extends \Drupal\Core\Database\Query\InvalidArgumentException implements DatabaseException
Expanded class hierarchy of FieldsOverlapException
3 string references to 'FieldsOverlapException'
- drupal7.php in core/
modules/ tracker/ tests/ fixtures/ drupal7.php - A database agnostic dump for testing purposes.
- drupal7.php in core/
modules/ rdf/ tests/ fixtures/ drupal7.php - A database agnostic dump for testing purposes.
- drupal7.php in core/
modules/ migrate_drupal/ tests/ fixtures/ drupal7.php - A database agnostic dump for testing purposes.
File
- core/
lib/ Drupal/ Core/ Database/ Query/ FieldsOverlapException.php, line 13
Namespace
Drupal\Core\Database\QueryView source
class FieldsOverlapException extends \InvalidArgumentException implements DatabaseException {
}