1: <?php
2: namespace Xoops\Core\Exception;
3:
4: /**
5: * NoHandlerException - the requested handler could not be instantiated
6: *
7: * @category Xoops\Core\Exception
8: * @package Xoops
9: * @author Richard Griffith <richard@geekwright.com>
10: * @copyright 2015 XOOPS Project (http://xoops.org)
11: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
12: * @link http://xoops.org
13: */
14: class NoHandlerException extends \DomainException
15: {
16: }
17: