UniSharp /
laravel-filemanager
| 1 | <?php |
||
| 2 | |||
| 3 | namespace UniSharp\LaravelFilemanager\Exceptions; |
||
| 4 | |||
| 5 | class DuplicateFileNameException extends \Exception |
||
| 6 | { |
||
| 7 | public function __construct() |
||
| 8 | { |
||
| 9 | $this->message = trans('laravel-filemanager::lfm.error-file-exist'); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 10 | } |
||
| 11 | } |
||
| 12 |