Primo Committ
This commit is contained in:
37
vendor/laravel/framework/src/Illuminate/Http/Exceptions/HttpResponseException.php
vendored
Normal file
37
vendor/laravel/framework/src/Illuminate/Http/Exceptions/HttpResponseException.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Http\Exceptions;
|
||||
|
||||
use RuntimeException;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class HttpResponseException extends RuntimeException
|
||||
{
|
||||
/**
|
||||
* The underlying response instance.
|
||||
*
|
||||
* @var \Symfony\Component\HttpFoundation\Response
|
||||
*/
|
||||
protected $response;
|
||||
|
||||
/**
|
||||
* Create a new HTTP response exception instance.
|
||||
*
|
||||
* @param \Symfony\Component\HttpFoundation\Response $response
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(Response $response)
|
||||
{
|
||||
$this->response = $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the underlying response instance.
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\Response
|
||||
*/
|
||||
public function getResponse()
|
||||
{
|
||||
return $this->response;
|
||||
}
|
||||
}
|
||||
23
vendor/laravel/framework/src/Illuminate/Http/Exceptions/PostTooLargeException.php
vendored
Normal file
23
vendor/laravel/framework/src/Illuminate/Http/Exceptions/PostTooLargeException.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Http\Exceptions;
|
||||
|
||||
use Symfony\Component\HttpKernel\Exception\HttpException;
|
||||
use Throwable;
|
||||
|
||||
class PostTooLargeException extends HttpException
|
||||
{
|
||||
/**
|
||||
* Create a new "post too large" 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(413, $message, $previous, $headers, $code);
|
||||
}
|
||||
}
|
||||
23
vendor/laravel/framework/src/Illuminate/Http/Exceptions/ThrottleRequestsException.php
vendored
Normal file
23
vendor/laravel/framework/src/Illuminate/Http/Exceptions/ThrottleRequestsException.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user