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