IntegrityConstraintViolationException.php 331 B

1234567891011
  1. <?php
  2. namespace Drupal\Core\Database;
  3. /**
  4. * Exception thrown if a query would violate an integrity constraint.
  5. *
  6. * This exception is thrown e.g. when trying to insert a row that would violate
  7. * a unique key constraint.
  8. */
  9. class IntegrityConstraintViolationException extends \RuntimeException implements DatabaseException {}