Backup of db before drupal security update
[yaffs-website] / web / core / lib / Drupal / Core / Database / Query / FieldsOverlapException.php
1 <?php
2
3 namespace Drupal\Core\Database\Query;
4
5 use Drupal\Core\Database\DatabaseException;
6
7 /**
8  * Exception thrown if an insert query specifies a field twice.
9  *
10  * It is not allowed to specify a field as default and insert field, this
11  * exception is thrown if that is the case.
12  */
13 class FieldsOverlapException extends \InvalidArgumentException implements DatabaseException {}