phpvms/app/Exceptions/AircraftNotAtAirport.php
2018-08-26 16:40:04 +00:00

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';
}