Neos\Neos\Fusion\ExceptionHandlers\NodeWrappingHandler::getMessage PHP 메소드

getMessage() 보호된 메소드

appends the given reference code to the exception's message unless it is unset
protected getMessage ( Exception $exception, $referenceCode ) : string
$exception Exception
$referenceCode
리턴 string
    protected function getMessage(\Exception $exception, $referenceCode)
    {
        if (isset($referenceCode)) {
            return sprintf('%s (%s)', $exception->getMessage(), $referenceCode);
        }
        return $exception->getMessage();
    }
NodeWrappingHandler