You are here

class TooManyRequestsHttpException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Exception/TooManyRequestsHttpException.php \Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException

TooManyRequestsHttpException.

@author Ben Ramsey <ben@benramsey.com>

Hierarchy

Expanded class hierarchy of TooManyRequestsHttpException

See also

http://tools.ietf.org/html/rfc6585

1 file declares its use of TooManyRequestsHttpException
FlattenExceptionTest.php in vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php

File

vendor/symfony/http-kernel/Exception/TooManyRequestsHttpException.php, line 21

Namespace

Symfony\Component\HttpKernel\Exception
View source
class TooManyRequestsHttpException extends HttpException {

  /**
   * Constructor.
   *
   * @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be retried
   * @param string     $message    The internal exception message
   * @param \Exception $previous   The previous exception
   * @param int        $code       The internal exception code
   */
  public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $code = 0) {
    $headers = array();
    if ($retryAfter) {
      $headers = array(
        'Retry-After' => $retryAfter,
      );
    }
    parent::__construct(429, $message, $previous, $headers, $code);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
HttpException::$headers private property
HttpException::$statusCode private property
HttpException::getHeaders public function Returns response headers. Overrides HttpExceptionInterface::getHeaders
HttpException::getStatusCode public function Returns the status code. Overrides HttpExceptionInterface::getStatusCode
TooManyRequestsHttpException::__construct public function Constructor. Overrides HttpException::__construct