for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File.php - Unable to read config file.
*
* This exception is thrown when the config file cannot be read.
* @package jaxon-core
* @author Thierry Feuzeu <[email protected]>
* @copyright 2022 Thierry Feuzeu <[email protected]>
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
* @link https://github.com/jaxon-php/jaxon-core
*/
namespace Jaxon\Utils\Config\Exception;
class FileExtension extends \Exception
{
* @var string
public $sConfigFile;
* @param string $sConfigFile
public function __construct(string $sConfigFile)
parent::__construct();
$this->sConfigFile = $sConfigFile;
}