# image-optimization/1.6.6/classes/exceptions/client-exception.php

Image Optimization – Compress Images and Convert to WebP or AVIF, version 1.6.6. 14 lines.

- Page: https://pluginprobe.com/plugins/image-optimization/1.6.6/code/classes/exceptions/client-exception.php
- Raw: https://pluginprobe.com/plugins/image-optimization/1.6.6/raw/classes/exceptions/client-exception.php
- Modified: 2024-02-06T14:05:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/image-optimization/1.6.6/code/classes/exceptions/client-exception.php#L10-L20`.

```php
<?php

namespace ImageOptimization\Classes\Exceptions;

use Exception;

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

class Client_Exception extends Exception {
	protected $message = 'Unknown client error';
}

```
