for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
class TicketStatusConflictException extends HttpException
{
/**
* Constructor.
*
* @param string $message The internal exception message
* @param \Exception $previous The previous exception
* @param int $code The internal exception code
*/
public function __construct($message = null, \Exception $previous = null, $code = 409)
parent::__construct($code, $message, $previous, array(), $code);
}