StaffIsNotFoundException.php 190 Bytes
<?php
namespace app\api\exception;

class StaffIsNotFoundException extends BaseException
{
    public $code = 400;
    public $message = 'staff is not found';
    public $errorCode = 3001;
}