# image-optimization/1.6.6/modules/oauth/components/exceptions/auth-error.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/modules/oauth/components/exceptions/auth-error.php
- Raw: https://pluginprobe.com/plugins/image-optimization/1.6.6/raw/modules/oauth/components/exceptions/auth-error.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/modules/oauth/components/exceptions/auth-error.php#L10-L20`.

```php
<?php

namespace ImageOptimization\Modules\Oauth\Components\Exceptions;

use Exception;

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

class Auth_Error extends Exception {
	protected $message = 'Auth error';
}

```
