Prado\Exceptions\TErrorHandler::getErrorTemplatePath PHP Method

getErrorTemplatePath() public method

public getErrorTemplatePath ( ) : string
return string the directory containing error template files.
    public function getErrorTemplatePath()
    {
        if ($this->_templatePath === null) {
            $this->_templatePath = Prado::getFrameworkPath() . '/Exceptions/templates';
        }
        return $this->_templatePath;
    }