PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
spatie
/
temporary-directory
/
src
/
Exceptions
/
Editing: PathAlreadyExists.php
<?php namespace Spatie\TemporaryDirectory\Exceptions; class PathAlreadyExists extends \Exception { public static function create(string $path): static { return new static("Path `{$path}` already exists."); } }
SAVE
CANCEL