uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
plugins
/
..
/
libraries
/
fof40
/
View
/
Exception
/
..
/
Exception
/
ModelNotFound.php
/
/
<?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\View\Exception; defined('_JEXEC') || die; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * Exception thrown when we can't get a Controller's name */ class ModelNotFound extends RuntimeException { public function __construct(string $path, string $viewName, int $code = 500, Exception $previous = null) { $message = Text::sprintf('LIB_FOF40_VIEW_MODELNOTINVIEW', $path, $viewName); parent::__construct($message, $code, $previous); } }
/home/digilove/public_html/plugins/../libraries/fof40/View/Exception/../Exception/ModelNotFound.php