Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
doctrine /
orm /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Cache
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Decorator
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Event
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Exception
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Id
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Internal
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Mapping
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Persisters
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Proxy
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Query
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Repository
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Tools
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Utility
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
AbstractQuery.php
40.83
KB
-rwxrwxr-x
2026-04-02 06:18
Cache.php
4.71
KB
-rwxrwxr-x
2026-04-02 06:18
Configuration.php
35.73
KB
-rwxrwxr-x
2026-04-02 06:18
EntityManager.php
31.96
KB
-rwxrwxr-x
2026-04-02 06:18
EntityManagerInterface.php
9.59
KB
-rwxrwxr-x
2026-04-02 06:18
EntityNotFoundException.php
1.06
KB
-rwxrwxr-x
2026-04-02 06:18
EntityRepository.php
10.99
KB
-rwxrwxr-x
2026-04-02 06:18
Events.php
3.93
KB
-rwxrwxr-x
2026-04-02 06:18
LazyCriteriaCollection.php
2.88
KB
-rwxrwxr-x
2026-04-02 06:18
NativeQuery.php
1.76
KB
-rwxrwxr-x
2026-04-02 06:18
NoResultException.php
356
B
-rwxrwxr-x
2026-04-02 06:18
NonUniqueResultException.php
468
B
-rwxrwxr-x
2026-04-02 06:18
ORMException.php
8.82
KB
-rwxrwxr-x
2026-04-02 06:18
ORMInvalidArgumentException.php
10.34
KB
-rwxrwxr-x
2026-04-02 06:18
ORMSetup.php
6.88
KB
-rwxrwxr-x
2026-04-02 06:18
OptimisticLockException.php
2.03
KB
-rwxrwxr-x
2026-04-02 06:18
PersistentCollection.php
21.18
KB
-rwxrwxr-x
2026-04-02 06:18
PessimisticLockException.php
309
B
-rwxrwxr-x
2026-04-02 06:18
Query.php
24.43
KB
-rwxrwxr-x
2026-04-02 06:18
QueryBuilder.php
44.52
KB
-rwxrwxr-x
2026-04-02 06:18
TransactionRequiredException.php
496
B
-rwxrwxr-x
2026-04-02 06:18
UnexpectedResultException.php
209
B
-rwxrwxr-x
2026-04-02 06:18
UnitOfWork.php
145.19
KB
-rwxrwxr-x
2026-04-02 06:18
Version.php
962
B
-rwxrwxr-x
2026-04-02 06:18
Save
Rename
<?php declare(strict_types=1); namespace Doctrine\ORM; use Doctrine\Common\Cache\Cache as CacheDriver; use Doctrine\ORM\Cache\Exception\InvalidResultCacheDriver; use Doctrine\ORM\Cache\Exception\MetadataCacheNotConfigured; use Doctrine\ORM\Cache\Exception\MetadataCacheUsesNonPersistentCache; use Doctrine\ORM\Cache\Exception\QueryCacheNotConfigured; use Doctrine\ORM\Cache\Exception\QueryCacheUsesNonPersistentCache; use Doctrine\ORM\Exception\EntityManagerClosed; use Doctrine\ORM\Exception\InvalidEntityRepository; use Doctrine\ORM\Exception\InvalidHydrationMode; use Doctrine\ORM\Exception\MismatchedEventManager; use Doctrine\ORM\Exception\MissingIdentifierField; use Doctrine\ORM\Exception\MissingMappingDriverImplementation; use Doctrine\ORM\Exception\NamedNativeQueryNotFound; use Doctrine\ORM\Exception\NamedQueryNotFound; use Doctrine\ORM\Exception\ProxyClassesAlwaysRegenerating; use Doctrine\ORM\Exception\UnexpectedAssociationValue; use Doctrine\ORM\Exception\UnknownEntityNamespace; use Doctrine\ORM\Exception\UnrecognizedIdentifierFields; use Doctrine\ORM\Persisters\Exception\CantUseInOperatorOnCompositeKeys; use Doctrine\ORM\Persisters\Exception\InvalidOrientation; use Doctrine\ORM\Persisters\Exception\UnrecognizedField; use Doctrine\ORM\Repository\Exception\InvalidFindByCall; use Doctrine\ORM\Repository\Exception\InvalidMagicMethodCall; use Doctrine\ORM\Tools\Exception\NotSupported; use Exception; 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 MissingMappingDriverImplementation::create(); } /** * @deprecated Use Doctrine\ORM\Exception\NamedQueryNotFound * * @param string $queryName * * @return ORMException */ public static function namedQueryNotFound($queryName) { return NamedQueryNotFound::fromName($queryName); } /** * @deprecated Use Doctrine\ORM\Exception\NamedNativeQueryNotFound * * @param string $nativeQueryName * * @return ORMException */ public static function namedNativeQueryNotFound($nativeQueryName) { return NamedNativeQueryNotFound::fromName($nativeQueryName); } /** * @deprecated Use Doctrine\ORM\Persisters\Exception\UnrecognizedField * * @param string $field * * @return ORMException */ public static function unrecognizedField($field) { return new UnrecognizedField(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 UnexpectedAssociationValue::create($class, $association, $given, $expected); } /** * @deprecated Use Doctrine\ORM\Persisters\Exception\InvalidOrientation * * @param string $className * @param string $field * * @return ORMException */ public static function invalidOrientation($className, $field) { return InvalidOrientation::fromClassNameAndField($className, $field); } /** * @deprecated Use Doctrine\ORM\Exception\EntityManagerClosed * * @return ORMException */ public static function entityManagerClosed() { return EntityManagerClosed::create(); } /** * @deprecated Use Doctrine\ORM\Exception\InvalidHydrationMode * * @param string $mode * * @return ORMException */ public static function invalidHydrationMode($mode) { return InvalidHydrationMode::fromMode($mode); } /** * @deprecated Use Doctrine\ORM\Exception\MismatchedEventManager * * @return ORMException */ public static function mismatchedEventManager() { return MismatchedEventManager::create(); } /** * @deprecated Use Doctrine\ORM\Repository\Exception\InvalidMagicMethodCall::onMissingParameter() * * @param string $methodName * * @return ORMException */ public static function findByRequiresParameter($methodName) { return InvalidMagicMethodCall::onMissingParameter($methodName); } /** * @deprecated Doctrine\ORM\Repository\Exception\InvalidMagicMethodCall::becauseFieldNotFoundIn() * * @param string $entityName * @param string $fieldName * @param string $method * * @return ORMException */ public static function invalidMagicCall($entityName, $fieldName, $method) { return InvalidMagicMethodCall::becauseFieldNotFoundIn($entityName, $fieldName, $method); } /** * @deprecated Use Doctrine\ORM\Repository\Exception\InvalidFindByCall::fromInverseSideUsage() * * @param string $entityName * @param string $associationFieldName * * @return ORMException */ public static function invalidFindByInverseAssociation($entityName, $associationFieldName) { return InvalidFindByCall::fromInverseSideUsage($entityName, $associationFieldName); } /** * @deprecated Use Doctrine\ORM\Cache\Exception\InvalidResultCacheDriver * * @return ORMException */ public static function invalidResultCacheDriver() { return InvalidResultCacheDriver::create(); } /** * @deprecated Doctrine\ORM\Tools\Exception\NotSupported * * @return ORMException */ public static function notSupported() { return NotSupported::create(); } /** * @deprecated Use Doctrine\ORM\Cache\Exception\QueryCacheNotConfigured * * @return ORMException */ public static function queryCacheNotConfigured() { return QueryCacheNotConfigured::create(); } /** * @deprecated Use Doctrine\ORM\Cache\Exception\MetadataCacheNotConfigured * * @return ORMException */ public static function metadataCacheNotConfigured() { return MetadataCacheNotConfigured::create(); } /** * @deprecated Use Doctrine\ORM\Cache\Exception\QueryCacheUsesNonPersistentCache * * @return ORMException */ public static function queryCacheUsesNonPersistentCache(CacheDriver $cache) { return QueryCacheUsesNonPersistentCache::fromDriver($cache); } /** * @deprecated Use Doctrine\ORM\Cache\Exception\MetadataCacheUsesNonPersistentCache * * @return ORMException */ public static function metadataCacheUsesNonPersistentCache(CacheDriver $cache) { return MetadataCacheUsesNonPersistentCache::fromDriver($cache); } /** * @deprecated Use Doctrine\ORM\Exception\ProxyClassesAlwaysRegenerating * * @return ORMException */ public static function proxyClassesAlwaysRegenerating() { return ProxyClassesAlwaysRegenerating::create(); } /** * @deprecated Use Doctrine\ORM\Exception\UnknownEntityNamespace * * @param string $entityNamespaceAlias * * @return ORMException */ public static function unknownEntityNamespace($entityNamespaceAlias) { return UnknownEntityNamespace::fromNamespaceAlias($entityNamespaceAlias); } /** * @deprecated Use Doctrine\ORM\Exception\InvalidEntityRepository * * @param string $className * * @return ORMException */ public static function invalidEntityRepository($className) { return InvalidEntityRepository::fromClassName($className); } /** * @deprecated Use Doctrine\ORM\Exception\MissingIdentifierField * * @param string $className * @param string $fieldName * * @return ORMException */ public static function missingIdentifierField($className, $fieldName) { return MissingIdentifierField::fromFieldAndClass($fieldName, $className); } /** * @deprecated Use Doctrine\ORM\Exception\UnrecognizedIdentifierFields * * @param string $className * @param string[] $fieldNames * * @return ORMException */ public static function unrecognizedIdentifierFields($className, $fieldNames) { return UnrecognizedIdentifierFields::fromClassAndFieldNames($className, $fieldNames); } /** * @deprecated Use Doctrine\ORM\Persisters\Exception\CantUseInOperatorOnCompositeKeys * * @return ORMException */ public static function cantUseInOperatorOnCompositeKeys() { return CantUseInOperatorOnCompositeKeys::create(); } }