2018-02-23 05:15:00 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* Class AircraftPermissionDenied
|
|
|
|
* @package App\Exceptions
|
|
|
|
*/
|
2018-03-31 00:08:53 +08:00
|
|
|
class AircraftPermissionDenied extends InternalError
|
2018-02-23 05:15:00 +08:00
|
|
|
{
|
2018-03-31 00:08:53 +08:00
|
|
|
public const FIELD = 'aircraft_id';
|
|
|
|
public const MESSAGE = 'User is not allowed to fly this aircraft';
|
2018-02-23 05:15:00 +08:00
|
|
|
}
|