Prado\Exceptions\TErrorHandler::setErrorTemplatePath PHP Méthode

setErrorTemplatePath() public méthode

The path must be in namespace format, such as System.Exceptions (which is the default).
public setErrorTemplatePath ( $value )
    public function setErrorTemplatePath($value)
    {
        if (($templatePath = Prado::getPathOfNamespace($value)) !== null && is_dir($templatePath)) {
            $this->_templatePath = $templatePath;
        } else {
            throw new TConfigurationException('errorhandler_errortemplatepath_invalid', $value);
        }
    }