File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_akeeba/AliceChecks/Exception
Viewing File: /home/astoriaah/www/administrator/components/com_akeeba/AliceChecks/Exception/CannotOpenLogfile.php
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\Alice\Exception; use Exception; use Joomla\CMS\Language\Text; use RuntimeException; /** * ALICE Exception: cannot open log file */ class CannotOpenLogfile extends RuntimeException { public function __construct($logFile, Exception $previous = null) { $message = Text::sprintf('COM_AKEEBA_ALICE_ERR_CANNOT_OPEN_LOGFILE', $logFile); parent::__construct($message, 500, $previous); } }