| 1 |
<?php |
| 2 |
|
| 3 |
namespace ImageOptimization\Classes\Image; |
| 4 |
|
| 5 |
use ImageOptimization\Classes\Basic_Enum; |
| 6 |
|
| 7 |
if ( ! defined( 'ABSPATH' ) ) { |
| 8 |
exit; // Exit if accessed directly. |
| 9 |
} |
| 10 |
|
| 11 |
final class Image_Optimization_Error_Type extends Basic_Enum { |
| 12 |
public const QUOTA_EXCEEDED = 'quota-exceeded'; |
| 13 |
public const FILE_ALREADY_EXISTS = 'file-already-exists'; |
| 14 |
public const GENERIC = 'generic'; |
| 15 |
} |
| 16 |
|