1
0
mirror of synced 2025-01-31 20:41:44 +03:00
doctrine2/classes/Exception/Mapping.class.php
doctrine 571cb46726
2006-04-13 20:37:28 +00:00

11 lines
315 B
PHP

<?php
/**
* thrown when user tries to get a foreign key object but the mapping is not done right
*/
class Doctrine_Mapping_Exception extends Doctrine_Exception {
public function __construct() {
parent::__construct("An error occured in the mapping logic.",Doctrine::ERR_MAPPING);
}
}
?>