15 lines
256 B
PHP
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';
|
|
}
|