DatabaseObjectNotFoundException.php 423 B

12345678910111213141516
  1. <?php
  2. namespace Doctrine\DBAL\Exception;
  3. /**
  4. * Base class for all unknown database object related errors detected in the driver.
  5. *
  6. * A database object is considered any asset that can be created in a database
  7. * such as schemas, tables, views, sequences, triggers, constraints, indexes,
  8. * functions, stored procedures etc.
  9. *
  10. * @psalm-immutable
  11. */
  12. class DatabaseObjectNotFoundException extends ServerException
  13. {
  14. }