lms/vendor/spatie/image/src/Exceptions/ImageMethodDoesNotExist.php
2025-12-15 12:26:23 +01:00

14 lines
251 B
PHP

<?php
namespace Spatie\Image\Exceptions;
use Exception;
class ImageMethodDoesNotExist extends Exception
{
public static function make(string $methodName): static
{
return new static("Method `{$methodName}` does not exist");
}
}