phpvms/app/Exceptions/AircraftNotAtAirport.php

13 lines
240 B
PHP
Raw Normal View History

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