Neos\Flow\Property\Exception::getStatusCode PHP Method

getStatusCode() public method

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