File "CannotOptimizePng.php"

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

<?php

namespace Spatie\Image\Exceptions;

use Exception;

class CannotOptimizePng extends Exception
{
    public static function make(): self
    {
        return new self('The vips driver cannot optimize pngs');
    }
}