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

15 lines
256 B
PHP

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