Eris\Shrinker\Attempts::ensureLimit PHP Method

ensureLimit() public method

public ensureLimit ( Exception $exception )
$exception Exception
    public function ensureLimit(\Exception $exception)
    {
        if ($this->total >= $this->giveUpAfter) {
            throw $exception;
        }
    }