• File: image-already-optimized-error.php
  • Full Path: /home/builxejc/public_html/wp-content/plugins/image-optimization/modules/optimization/classes/exceptions/image-already-optimized-error.php
  • Date Modified: 02/06/2024 7:05 PM
  • File size: 377 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace ImageOptimization\Modules\Optimization\Classes\Exceptions;

use Exception;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * The service responses with the error when the optimized image size >= than the original size.
 */
class Image_Already_Optimized_Error extends Exception {
	protected $message = 'Image already optimized';
}