Backup of db before drupal security update
[yaffs-website] / web / core / lib / Drupal / Core / Database / Query / InvalidMergeQueryException.php
1 <?php
2
3 namespace Drupal\Core\Database\Query;
4
5 use Drupal\Core\Database\DatabaseException;
6
7 /**
8  * Exception thrown for merge queries that do not make semantic sense.
9  *
10  * There are many ways that a merge query could be malformed.  They should all
11  * throw this exception and set an appropriately descriptive message.
12  */
13 class InvalidMergeQueryException extends \InvalidArgumentException implements DatabaseException {}