D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
spatie
/
temporary-directory
/
src
/
Exceptions
/
Filename :
PathAlreadyExists.php
back
Copy
<?php namespace Spatie\TemporaryDirectory\Exceptions; class PathAlreadyExists extends \Exception { public static function create(string $path): static { return new static("Path `{$path}` already exists."); } }