phpvms/app/Exceptions/AircraftNotAtAirport.php
2018-03-30 11:08:53 -05:00

14 lines
267 B
PHP

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