PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Http
/
Exceptions
<?php namespace Illuminate\Http\Exceptions; use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException; use Throwable; class ThrottleRequestsException extends TooManyRequestsHttpException { /** * Create a new throttle requests exception instance. * * @param string|null $message * @param \Throwable|null $previous * @param array $headers * @param int $code * @return void */ public function __construct($message = null, Throwable $previous = null, array $headers = [], $code = 0) { parent::__construct(null, $message, $previous, $code, $headers); } }
[-] HttpResponseException.php
[edit]
[+]
..
[-] PostTooLargeException.php
[edit]
[-] ThrottleRequestsException.php
[edit]