InvalidMergeQueryException.php 421 B

12345678910111213
  1. <?php
  2. namespace Drupal\Core\Database\Query;
  3. use Drupal\Core\Database\DatabaseException;
  4. /**
  5. * Exception thrown for merge queries that do not make semantic sense.
  6. *
  7. * There are many ways that a merge query could be malformed. They should all
  8. * throw this exception and set an appropriately descriptive message.
  9. */
  10. class InvalidMergeQueryException extends \InvalidArgumentException implements DatabaseException {}