Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Http
/
Exceptions
:
PostTooLargeException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); } }