Neos\Fusion\Core\ExceptionHandlers\HtmlMessageHandler::formatErrorCodeMessage PHP Method

formatErrorCodeMessage() protected method

Renders a message depicting the user where to find further information for the given reference code.
protected formatErrorCodeMessage ( integer $referenceCode ) : string
$referenceCode integer
return string A rendered message with the reference code containing HTML
    protected function formatErrorCodeMessage($referenceCode)
    {
        return $referenceCode ? 'For a full stacktrace, open <code>Data/Logs/Exceptions/' . $referenceCode . '.txt</code>' : '';
    }