phpvms/app/Exceptions/PirepCancelled.php
2018-02-22 15:15:00 -06:00

21 lines
445 B
PHP

<?php
/**
*
*/
namespace App\Exceptions;
use Symfony\Component\HttpKernel\Exception\HttpException;
class PirepCancelled extends HttpException
{
public function __construct(string $message = null, \Exception $previous = null, int $code = 0, array $headers = [])
{
parent::__construct(
400,
'PIREP has been cancelled, updates are not allowed',
$previous, $headers, $code
);
}
}