13 lines
240 B
PHP
13 lines
240 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
/**
|
|
* Class AircraftNotAtAirport
|
|
*/
|
|
class AircraftNotAtAirport extends InternalError
|
|
{
|
|
public const FIELD = 'aircraft_id';
|
|
public const MESSAGE = 'The aircraft is not at the departure airport';
|
|
}
|