Neos\Fusion\Fixtures\AbstractRenderingExceptionHandler::handle PHP Метод

handle() защищенный Метод

dummy implementation of message-generation-stub
protected handle ( string $typoScriptPath, Exception $exception, integer $referenceCode = null ) : string
$typoScriptPath string path causing the exception
$exception Exception exception to handle
$referenceCode integer reference code for the exception
Результат string
    protected function handle($typoScriptPath, \Exception $exception, $referenceCode = null)
    {
        $this->typoScriptPath = $typoScriptPath;
        $this->exception = $exception;
        $this->referenceCode = $referenceCode;
        return $this->message;
    }