for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* DataDepth.php - Incorrect config data exception
*
* This exception is thrown when config data are incorrect.
* @package jaxon-config
* @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\Config\Exception;
class DataDepth extends \Exception
{
* @var string
public $sPrefix;
* @var int
public $nDepth;
* @param string $sPrefix
* @param int $nDepth
public function __construct(string $sPrefix, int $nDepth)
parent::__construct();
$this->sPrefix = $sPrefix;
$this->nDepth = $nDepth;
}