for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ConfigTree\Exception;
class ConfigTreeParamNotSet extends \RuntimeException
{
public static function constructWithSettingPath(string $pathToConfigSettingInTree) : ConfigTreeParamNotSet
$message = 'Config setting "' . $pathToConfigSettingInTree . '" not set.';
return new static($message);
}