phpvms/app/Exceptions/PirepCancelled.php
Nabeel S 182aabf426
Refactor error handling internally to follow RFC7807 (#362)
* Refactor error handling internally to follow RFC7807

* style fixes
2019-08-21 08:17:44 -04:00

40 lines
728 B
PHP

<?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,
];
}
}