File "CouldNotConvert.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/image/src/Exceptions/CouldNotConvert.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Image\Exceptions;

use Exception;

class CouldNotConvert extends Exception
{
    public static function unknownManipulation(string $operationName): self
    {
        return new self("Can not convert image. Unknown operation `{$operationName}` used");
    }
}