%PDF- %PDF-
Direktori : /var/www/html/hrsys/api/app/Exceptions/ |
Current File : /var/www/html/hrsys/api/app/Exceptions/ItemNotFound.php |
<?php namespace App\Exceptions; class ItemNotFound extends ApiException { private $validator; /** * CustomValidationException constructor. * @param $validator */ public function __construct($validator) { $this->validator = $validator; } public function render() { return $this->response() ->notFound([ 'message' => trans('exceptions.item_not_found'), ]); } }