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