2006-05-30 13:04:54 +04:00
|
|
|
<?php
|
2006-05-30 22:43:36 +04:00
|
|
|
Doctrine::autoload('Doctrine_Exception');
|
2006-05-30 13:04:54 +04:00
|
|
|
/**
|
|
|
|
* thrown when user tries to initialize a new instance of Doctrine_Table,
|
|
|
|
* while there already exists an instance of that table
|
|
|
|
*/
|
|
|
|
class Doctrine_Table_Exception extends Doctrine_Exception {
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct("Couldn't initialize table. One instance of this
|
|
|
|
tabke already exists. Always use Doctrine_Session::getTable(\$name)
|
|
|
|
to get on instance of a Doctrine_Table.",Doctrine::ERR_TABLE_INSTANCE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|