for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\Http\Exception;
/**
* Class RequestEntityTooLargeException
*
* @package Thruster\Component\Http\Exception
* @author Aurimas Niekis <[email protected]>
*/
class RequestEntityTooLargeException extends RequestException
{
public function __construct()
$message = 'Request Entity Too Large';
parent::__construct(413, $message);
}