Neos\Fusion\Core\ExceptionHandlers\BubblingHandler::handleRenderingException PHP Метод

handleRenderingException() публичный Метод

Handle an Exception thrown while rendering TypoScript
public handleRenderingException ( array $typoScriptPath, Exception $exception ) : string
$typoScriptPath array
$exception Exception
Результат string
    public function handleRenderingException($typoScriptPath, \Exception $exception)
    {
        if ($exception instanceof RuntimeException) {
            throw $exception;
        } else {
            throw new RuntimeException('TypoScript Rendering Exception, see typoScriptPath and nested Exception for details.', 1401803055, $exception, $typoScriptPath);
        }
    }