Page MenuHomestyx hydra

PhabricatorSystemActionRateLimitException.php
No OneTemporary

PhabricatorSystemActionRateLimitException.php

<?php
final class PhabricatorSystemActionRateLimitException extends Exception {
private $action;
private $score;
public function __construct(PhabricatorSystemAction $action, $score) {
$this->action = $action;
$this->score = $score;
parent::__construct($action->getLimitExplanation());
}
public function getRateExplanation() {
return $this->action->getRateExplanation($this->score);
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Apr 28, 7:56 PM (8 h, 49 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1119228
Default Alt Text
PhabricatorSystemActionRateLimitException.php (419 B)

Event Timeline