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

13 lines
228 B
PHP

<?php
namespace App\Exceptions;
/**
* Class UserNotAtAirport
*/
class UserNotAtAirport extends InternalError
{
public const FIELD = 'dpt_airport_id';
public const MESSAGE = 'Pilot is not at the departure airport';
}