for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aoe\Asdis\System\Configuration\Exception;
/**
* Exception which is thrown when a requested TypoScript setting is invalid.
*/
class InvalidTypoScriptSetting extends \Exception
{
* @param string $key Setting key. E.g. "logger.severity".
* @param string $type The actual data type of the setting.
* @param integer $code Exception code.
public function __construct($key, $type, $code)
parent::__construct('Invalid TypoScript Setting "'.$key.'". Type is "'.$type.'".', $code);
}