phpvms/app/Exceptions/UserPilotIdExists.php
2019-07-16 13:54:14 -04:00

10 lines
192 B
PHP

<?php
namespace App\Exceptions;
class UserPilotIdExists extends InternalError
{
public const FIELD = 'pilot_id';
public const MESSAGE = 'A user with this pilot ID already exists';
}