File "PathAlreadyExists.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/temporary-directory/src/Exceptions/PathAlreadyExists.php
File size: 232 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\TemporaryDirectory\Exceptions;

class PathAlreadyExists extends \Exception
{
    public static function create(string $path): static
    {
        return new static("Path `{$path}` already exists.");
    }
}