Neos\Flow\Property\Exception::getStatusCode PHP Метод

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

Return the status code of the nested exception, if any.
public getStatusCode ( ) : integer
Результат integer
    public function getStatusCode()
    {
        $nestedException = $this->getPrevious();
        if ($nestedException !== null && $nestedException instanceof \Neos\Flow\Exception) {
            return $nestedException->getStatusCode();
        }
        return parent::getStatusCode();
    }
Exception