Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/Exception/ExceptionInterface.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
9 * file that was distributed with this source code. | 9 * file that was distributed with this source code. |
10 */ | 10 */ |
11 | 11 |
12 namespace Symfony\Component\DependencyInjection\Exception; | 12 namespace Symfony\Component\DependencyInjection\Exception; |
13 | 13 |
14 use Psr\Container\ContainerExceptionInterface; | |
15 | |
14 /** | 16 /** |
15 * Base ExceptionInterface for Dependency Injection component. | 17 * Base ExceptionInterface for Dependency Injection component. |
16 * | 18 * |
17 * @author Fabien Potencier <fabien@symfony.com> | 19 * @author Fabien Potencier <fabien@symfony.com> |
18 * @author Bulat Shakirzyanov <bulat@theopenskyproject.com> | 20 * @author Bulat Shakirzyanov <bulat@theopenskyproject.com> |
19 */ | 21 */ |
20 interface ExceptionInterface | 22 interface ExceptionInterface extends ContainerExceptionInterface |
21 { | 23 { |
22 } | 24 } |