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 invalidResultCacheDriver() |
||
39 | |||
40 | /** |
||
41 | * @return ORMException |
||
42 | */ |
||
43 | public static function notSupported() |
||
47 | 2 | ||
48 | /** |
||
49 | 2 | * @return ORMException |
|
50 | */ |
||
51 | public static function queryCacheNotConfigured() |
||
55 | |||
56 | /** |
||
57 | * @return ORMException |
||
58 | */ |
||
59 | public static function metadataCacheNotConfigured() |
||
63 | |||
64 | /** |
||
65 | * @param \Doctrine\Common\Cache\Cache $cache |
||
66 | * |
||
67 | * @return ORMException |
||
68 | */ |
||
69 | public static function queryCacheUsesNonPersistentCache(CacheDriver $cache) |
||
73 | |||
74 | /** |
||
75 | * @param \Doctrine\Common\Cache\Cache $cache |
||
76 | * |
||
77 | * @return ORMException |
||
78 | */ |
||
79 | public static function metadataCacheUsesNonPersistentCache(CacheDriver $cache) |
||
83 | } |
||
84 |