TableExistsException.php 213 B

12345678910
  1. <?php
  2. namespace Doctrine\DBAL\Exception;
  3. /**
  4. * Exception for an already existing table referenced in a statement detected in the driver.
  5. */
  6. class TableExistsException extends DatabaseObjectExistsException
  7. {
  8. }