phpvms/app/Exceptions/AircraftNotAtAirport.php

14 lines
267 B
PHP
Raw Normal View History

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