File "ConversionFailedException.php"
Full Path: /var/www/html/wordpress/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php
File size: 956 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace WebPConvert\Convert\Exceptions;
use WebPConvert\Exceptions\WebPConvertException;
/**
* ConversionFailedException is the base exception in the hierarchy for conversion errors.
*
* Exception hierarchy from here:
*
* WebpConvertException
* ConversionFailedException
* ConversionSkippedException
* ConverterNotOperationalException
* InvalidApiKeyException
* SystemRequirementsNotMetException
* FileSystemProblemsException
* CreateDestinationFileException
* CreateDestinationFolderException
* InvalidInputException
* ConverterNotFoundException
* InvalidImageTypeException
* InvalidOptionValueException
* TargetNotFoundException
*/
class ConversionFailedException extends WebPConvertException
{
//public $description = 'Conversion failed';
public $description = '';
}