Remove undefined variable $e

This commit is contained in:
Volker 2014-06-02 11:48:51 +02:00 committed by Fabien Potencier
parent 38bdcf141c
commit 637c6e1c69

View File

@ -467,7 +467,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
}
if (isset($this->loading[$id])) {
throw new LogicException(sprintf('The service "%s" has a circular reference to itself.', $id), 0, $e);
throw new LogicException(sprintf('The service "%s" has a circular reference to itself.', $id));
}
if (!$this->hasDefinition($id) && isset($this->aliasDefinitions[$id])) {