FieldsOverlapException.php 379 B

12345678910111213
  1. <?php
  2. namespace Drupal\Core\Database\Query;
  3. use Drupal\Core\Database\DatabaseException;
  4. /**
  5. * Exception thrown if an insert query specifies a field twice.
  6. *
  7. * It is not allowed to specify a field as default and insert field, this
  8. * exception is thrown if that is the case.
  9. */
  10. class FieldsOverlapException extends \InvalidArgumentException implements DatabaseException {}