plexorganizrnginxsonarrradarrdashboardcouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallemby
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
675 B
33 lines
675 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace Github\Exception;
|
||
|
|
||
|
/**
|
||
|
* ApiLimitExceedException.
|
||
|
*
|
||
|
* @author Joseph Bielawski <stloyd@gmail.com>
|
||
|
*/
|
||
|
class ApiLimitExceedException extends RuntimeException
|
||
|
{
|
||
|
private $limit;
|
||
|
private $reset;
|
||
|
|
||
|
public function __construct($limit = 5000, $reset = 1800, $code = 0, $previous = null)
|
||
|
{
|
||
|
$this->limit = (int) $limit;
|
||
|
$this->reset = (int) $reset;
|
||
|
|
||
|
parent::__construct(sprintf('You have reached GitHub hourly limit! Actual limit is: %d', $limit), $code, $previous);
|
||
|
}
|
||
|
|
||
|
public function getLimit()
|
||
|
{
|
||
|
return $this->limit;
|
||
|
}
|
||
|
|
||
|
public function getResetTime()
|
||
|
{
|
||
|
return $this->reset;
|
||
|
}
|
||
|
}
|