2018-03-31 00:08:53 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
2019-08-21 20:17:44 +08:00
|
|
|
use App\Models\Aircraft;
|
|
|
|
|
2018-03-31 00:08:53 +08:00
|
|
|
/**
|
|
|
|
* Class AircraftNotAtAirport
|
|
|
|
*/
|
2019-11-19 23:06:07 +08:00
|
|
|
class AircraftNotAtAirport extends AbstractHttpException
|
2018-03-31 00:08:53 +08:00
|
|
|
{
|
|
|
|
public const MESSAGE = 'The aircraft is not at the departure airport';
|
2019-08-21 20:17:44 +08:00
|
|
|
|
|
|
|
private $aircraft;
|
|
|
|
|
|
|
|
public function __construct(Aircraft $aircraft)
|
|
|
|
{
|
|
|
|
$this->aircraft = $aircraft;
|
|
|
|
parent::__construct(
|
|
|
|
400,
|
|
|
|
static::MESSAGE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the RFC 7807 error type (without the URL root)
|
|
|
|
*/
|
|
|
|
public function getErrorType(): string
|
|
|
|
{
|
|
|
|
return 'aircraft-not-at-airport';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 [
|
|
|
|
'aircraft_id' => $this->aircraft->id,
|
|
|
|
];
|
|
|
|
}
|
2018-03-31 00:08:53 +08:00
|
|
|
}
|