1 <?php
2 /**
3 * Part of the Joomla Framework DI Package
4 *
5 * @copyright Copyright (C) 2013 - 2016 Open Source Matters, Inc. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE
7 */
8
9 namespace Joomla\DI\Exception;
10
11 /**
12 * Exception class for handling errors in resolving a dependency
13 *
14 * @since 1.0
15 */
16 class DependencyResolutionException extends \Exception
17 {
18 }
19