for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lincable\Exceptions;
use Symfony\Component\HttpKernel\Exception\HttpException;
class ConflictFileUploadHttpException extends HttpException
{
/**
* Create a new exception instance.
*
* @param string $message
* @return void
*/
public function __construct(string $message)
parent::__construct(409, $message);
}