Laravel 9 Update (#1413)
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
This commit is contained in:
43
app/Exceptions/PirepNotFound.php
Normal file
43
app/Exceptions/PirepNotFound.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user