1
0
mirror of synced 2025-02-07 15:59:27 +03:00
doctrine2/classes/Exception/Mapping.class.php

11 lines
334 B
PHP
Raw Normal View History

2006-04-13 20:37:28 +00:00
<?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($message = "An error occured in the mapping logic.") {
parent::__construct($message,Doctrine::ERR_MAPPING);
2006-04-13 20:37:28 +00:00
}
}
?>