*/ class ApiLimitExceedException extends RuntimeException { public function __construct($limit, $code = 0, $previous = null) { parent::__construct('You have reached GitHub hour limit! Actual limit is: '. $limit, $code, $previous); } }