Browse Source

forward original query exception when querying by name fails

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/25535/head
Robin Appelman 5 years ago
parent
commit
3401be216d
No known key found for this signature in database GPG Key ID: 42B69D8A64526EFB
  1. 7
      lib/private/AppFramework/Utility/SimpleContainer.php

7
lib/private/AppFramework/Utility/SimpleContainer.php

@ -93,7 +93,12 @@ class SimpleContainer implements ArrayAccess, ContainerInterface, IContainer {
if ($parameterType !== null && !$parameterType->isBuiltin()) {
$resolveName = $parameter->getName();
return $this->query($resolveName);
try {
return $this->query($resolveName);
} catch (QueryException $e2) {
// don't lose the error we got while trying to query by type
throw new QueryException($e2->getMessage(), $e2->getCode(), $e);
}
}
throw $e;

Loading…
Cancel
Save