phpvms/app/Exceptions/BidExists.php

27 lines
501 B
PHP
Raw Normal View History

<?php
namespace App\Exceptions;
use Symfony\Component\HttpKernel\Exception\HttpException;
/**
* Class BidExists
*/
class BidExists extends HttpException
{
public function __construct(
string $message = null,
\Exception $previous = null,
int $code = 0,
array $headers = []
) {
parent::__construct(
409,
'A bid already exists for this flight',
2019-05-13 02:26:44 +08:00
$previous,
$headers,
$code
);
}
}