b0y-101 Mini Shell


Current Path : E:/www/km/05/libraries/fof30/Factory/Exception/
File Upload :
Current File : E:/www/km/05/libraries/fof30/Factory/Exception/DispatcherNotFound.php

<?php
/**
 * @package     FOF
 * @copyright   2010-2017 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license     GNU GPL version 2 or later
 */

namespace FOF30\Factory\Exception;

use Exception;
use RuntimeException;

defined('_JEXEC') or die;

class DispatcherNotFound extends RuntimeException
{
	public function __construct( $dispatcherClass, $code = 500, Exception $previous = null )
	{
		$message = \JText::sprintf('LIB_FOF_DISPATCHER_ERR_NOT_FOUND', $dispatcherClass);

		parent::__construct( $message, $code, $previous );
	}

}

Copyright © 2019 by b0y-101