1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/Doctrine/Exception/Mapping.class.php
2006-05-30 08:59:33 +00:00

12 lines
377 B
PHP

<?php
Doctrine::autoload("Doctrine_Exception");
/**
* 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($message = "An error occured in the mapping logic.") {
parent::__construct($message,Doctrine::ERR_MAPPING);
}
}
?>