Ergo\Error\AbstractErrorHandler::isExceptionRecoverable PHP 메소드

isExceptionRecoverable() 보호된 메소드

Determines whether an exception is recoverable
protected isExceptionRecoverable ( $e ) : boolean
리턴 boolean
    protected function isExceptionRecoverable($e)
    {
        if ($e instanceof \ErrorException) {
            $ignore = E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_STRICT;
            return ($ignore & $e->getSeverity()) != 0;
        }
        return false;
    }