1 | <?php |
||
16 | class ORMException extends Exception |
||
17 | { |
||
18 | /** |
||
19 | * |
||
20 | * @param string $class |
||
21 | * @param string $association |
||
22 | * @param string $given |
||
23 | * @param string $expected |
||
24 | * |
||
25 | * @return \Doctrine\ORM\ORMInvalidArgumentException |
||
26 | */ |
||
27 | public static function unexpectedAssociationValue($class, $association, $given, $expected) |
||
31 | |||
32 | /** |
||
33 | * @return ORMException |
||
34 | */ |
||
35 | public static function notSupported() |
||
39 | } |
||
40 |