phpvms/app/Exceptions/PirepCancelled.php

40 lines
728 B
PHP
Raw Normal View History

<?php
namespace App\Exceptions;
use App\Models\Pirep;
class PirepCancelled extends HttpException
{
private $pirep;
public function __construct(Pirep $pirep)
{
$this->pirep = $pirep;
parent::__construct(
400,
'PIREP has been cancelled, updates are not allowed'
);
}
/**
* Return the RFC 7807 error type (without the URL root)
*/
public function getErrorType(): string
{
return 'pirep-cancelled';
}
public function getErrorDetails(): string
{
return $this->getMessage();
}
public function getErrorMetadata(): array
{
return [
'pirep_id' => $this->pirep->id,
];
}
}