# image-optimization/1.7.4/classes/exceptions/quota-exceeded-error.php

Image Optimizer – Compress Images and Convert to WebP or AVIF, version 1.7.4. 14 lines.

- Page: https://pluginprobe.com/plugins/image-optimization/1.7.4/code/classes/exceptions/quota-exceeded-error.php
- Raw: https://pluginprobe.com/plugins/image-optimization/1.7.4/raw/classes/exceptions/quota-exceeded-error.php
- Modified: 2024-06-26T13:37:14+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.7.4/code/classes/exceptions/quota-exceeded-error.php#L10-L20`.

```php
<?php

namespace ImageOptimization\Classes\Exceptions;

use Exception;

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

class Quota_Exceeded_Error extends Exception {
	protected $message = 'Quota exceeded';
}

```
