File "UnsupportedImageFormat.php"

Full Path: /var/www/html/back/vendor/spatie/image/src/Exceptions/UnsupportedImageFormat.php
File size: 293 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Image\Exceptions;

use Exception;

class UnsupportedImageFormat extends Exception
{
    public static function make(string $extension, ?\Throwable $previous = null): self
    {
        return new self("Unsupported format `{$extension}`.", previous: $previous);
    }
}