DatabaseObjectNotFoundException.php 400 Bytes
Newer Older
1 2 3 4 5
<?php

namespace Doctrine\DBAL\Exception;

/**
6 7 8 9 10
 * Base class for all unknown database object related errors detected in the driver.
 *
 * A database object is considered any asset that can be created in a database
 * such as schemas, tables, views, sequences, triggers,  constraints, indexes,
 * functions, stored procedures etc.
11
 */
12
class DatabaseObjectNotFoundException extends ServerException
13 14
{
}