phpvms/app/Exceptions/PirepNotFound.php
Nabeel S 12848091a2
Laravel 9 Update (#1413)
Update to Laravel 9 and PHP 8+

Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
2022-03-14 11:45:18 -04:00

44 lines
846 B
PHP

<?php
namespace App\Exceptions;
class PirepNotFound extends AbstractHttpException
{
private $pirep_id;
public function __construct($pirep_id)
{
$this->pirep_id = $pirep_id;
parent::__construct(
404,
'PIREP '.$pirep_id.' not found'
);
}
/**
* Return the RFC 7807 error type (without the URL root)
*/
public function getErrorType(): string
{
return 'pirep-not-found';
}
/**
* Get the detailed error string
*/
public function getErrorDetails(): string
{
return $this->getMessage();
}
/**
* Return an array with the error details, merged with the RFC7807 response
*/
public function getErrorMetadata(): array
{
return [
'pirep_id' => $this->pirep_id,
];
}
}