-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
ORMException.php
312 lines (284 loc) · 8.68 KB
/
ORMException.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<?php
declare(strict_types=1);
namespace Doctrine\ORM;
use Doctrine\Common\Cache\Cache as CacheDriver;
use Doctrine\Persistence\ObjectRepository;
use Exception;
use function get_debug_type;
use function implode;
use function sprintf;
/**
* Base exception class for all ORM exceptions.
*
* @deprecated Use Doctrine\ORM\Exception\ORMException for catch and instanceof
*/
class ORMException extends Exception
{
/**
* @deprecated Use Doctrine\ORM\Exception\MissingMappingDriverImplementation
*
* @return ORMException
*/
public static function missingMappingDriverImpl()
{
return new self("It's a requirement to specify a Metadata Driver and pass it " .
'to Doctrine\\ORM\\Configuration::setMetadataDriverImpl().');
}
/**
* @deprecated Use Doctrine\ORM\Exception\NamedQueryNotFound
*
* @param string $queryName
*
* @return ORMException
*/
public static function namedQueryNotFound($queryName)
{
return new self('Could not find a named query by the name "' . $queryName . '"');
}
/**
* @deprecated Use Doctrine\ORM\Exception\NamedQueryNotFound
*
* @param string $nativeQueryName
*
* @return ORMException
*/
public static function namedNativeQueryNotFound($nativeQueryName)
{
return new self('Could not find a named native query by the name "' . $nativeQueryName . '"');
}
/**
* @deprecated Use Doctrine\ORM\Persisters\Exception\UnrecognizedField
*
* @param string $field
*
* @return ORMException
*/
public static function unrecognizedField($field)
{
return new self(sprintf('Unrecognized field: %s', $field));
}
/**
* @deprecated Use Doctrine\ORM\Exception\UnexpectedAssociationValue
*
* @param string $class
* @param string $association
* @param string $given
* @param string $expected
*
* @return ORMException
*/
public static function unexpectedAssociationValue($class, $association, $given, $expected)
{
return new self(sprintf('Found entity of type %s on association %s#%s, but expecting %s', $given, $class, $association, $expected));
}
/**
* @deprecated Use Doctrine\ORM\Persisters\Exception\InvalidOrientation
*
* @param string $className
* @param string $field
*
* @return ORMException
*/
public static function invalidOrientation($className, $field)
{
return new self('Invalid order by orientation specified for ' . $className . '#' . $field);
}
/**
* @deprecated Use Doctrine\ORM\Exception\EntityManagerClosed
*
* @return ORMException
*/
public static function entityManagerClosed()
{
return new self('The EntityManager is closed.');
}
/**
* @deprecated Use Doctrine\ORM\Exception\InvalidHydrationMode
*
* @param string $mode
*
* @return ORMException
*/
public static function invalidHydrationMode($mode)
{
return new self(sprintf("'%s' is an invalid hydration mode.", $mode));
}
/**
* @deprecated Use Doctrine\ORM\Exception\MismatchedEventManager
*
* @return ORMException
*/
public static function mismatchedEventManager()
{
return new self('Cannot use different EventManager instances for EntityManager and Connection.');
}
/**
* @deprecated Use Doctrine\ORM\Repository\Exception\InvalidMagicMethodCall::onMissingParameter()
*
* @param string $methodName
*
* @return ORMException
*/
public static function findByRequiresParameter($methodName)
{
return new self("You need to pass a parameter to '" . $methodName . "'");
}
/**
* @deprecated Doctrine\ORM\Repository\Exception\InvalidFindByCall
*
* @param string $entityName
* @param string $fieldName
* @param string $method
*
* @return ORMException
*/
public static function invalidMagicCall($entityName, $fieldName, $method)
{
return new self(
"Entity '" . $entityName . "' has no field '" . $fieldName . "'. " .
"You can therefore not call '" . $method . "' on the entities' repository"
);
}
/**
* @deprecated Use Doctrine\ORM\Repository\Exception\InvalidFindByCall::fromInverseSideUsage()
*
* @param string $entityName
* @param string $associationFieldName
*
* @return ORMException
*/
public static function invalidFindByInverseAssociation($entityName, $associationFieldName)
{
return new self(
"You cannot search for the association field '" . $entityName . '#' . $associationFieldName . "', " .
'because it is the inverse side of an association. Find methods only work on owning side associations.'
);
}
/**
* @deprecated Use Doctrine\ORM\Cache\Exception\InvalidResultCacheDriver
*
* @return ORMException
*/
public static function invalidResultCacheDriver()
{
return new self('Invalid result cache driver; it must implement Doctrine\\Common\\Cache\\Cache.');
}
/**
* @deprecated Doctrine\ORM\Tools\Exception\NotSupported
*
* @return ORMException
*/
public static function notSupported()
{
return new self('This behaviour is (currently) not supported by Doctrine 2');
}
/**
* @deprecated Use Doctrine\ORM\Cache\Exception\QueryCacheNotConfigured
*
* @return ORMException
*/
public static function queryCacheNotConfigured()
{
return new self('Query Cache is not configured.');
}
/**
* @deprecated Use Doctrine\ORM\Cache\Exception\MetadataCacheNotConfigured
*
* @return ORMException
*/
public static function metadataCacheNotConfigured()
{
return new self('Class Metadata Cache is not configured.');
}
/**
* @deprecated Use Doctrine\ORM\Cache\Exception\QueryCacheUsesNonPersistentCache
*
* @return ORMException
*/
public static function queryCacheUsesNonPersistentCache(CacheDriver $cache)
{
return new self('Query Cache uses a non-persistent cache driver, ' . get_debug_type($cache) . '.');
}
/**
* @deprecated Use Doctrine\ORM\Cache\Exception\MetadataCacheUsesNonPersistentCache
*
* @return ORMException
*/
public static function metadataCacheUsesNonPersistentCache(CacheDriver $cache)
{
return new self('Metadata Cache uses a non-persistent cache driver, ' . get_debug_type($cache) . '.');
}
/**
* @deprecated Use Doctrine\ORM\Exception\ProxyClassesAlwaysRegenerating
*
* @return ORMException
*/
public static function proxyClassesAlwaysRegenerating()
{
return new self('Proxy Classes are always regenerating.');
}
/**
* @deprecated Use Doctrine\ORM\Exception\UnknownEntityNamespace
*
* @param string $entityNamespaceAlias
*
* @return ORMException
*/
public static function unknownEntityNamespace($entityNamespaceAlias)
{
return new self(
sprintf("Unknown Entity namespace alias '%s'.", $entityNamespaceAlias)
);
}
/**
* @deprecated Use Doctrine\ORM\Exception\InvalidEntityRepository
*
* @param string $className
*
* @return ORMException
*/
public static function invalidEntityRepository($className)
{
return new self(sprintf(
"Invalid repository class '%s'. It must be a %s.",
$className,
ObjectRepository::class
));
}
/**
* @deprecated Use Doctrine\ORM\Exception\MissingIdentifierField
*
* @param string $className
* @param string $fieldName
*
* @return ORMException
*/
public static function missingIdentifierField($className, $fieldName)
{
return new self(sprintf('The identifier %s is missing for a query of %s', $fieldName, $className));
}
/**
* @deprecated Use Doctrine\ORM\Exception\UnrecognizedIdentifierFields
*
* @param string $className
* @param string[] $fieldNames
*
* @return ORMException
*/
public static function unrecognizedIdentifierFields($className, $fieldNames)
{
return new self(
"Unrecognized identifier fields: '" . implode("', '", $fieldNames) . "' " .
"are not present on class '" . $className . "'."
);
}
/**
* @deprecated Use Doctrine\ORM\Persisters\Exception\CantUseInOperatorOnCompositeKeys
*
* @return ORMException
*/
public static function cantUseInOperatorOnCompositeKeys()
{
return new self("Can't use IN operator on entities that have composite keys.");
}
}