Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ConversionFailedException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace WebPConvert\Convert\Exceptions;
4
5use WebPConvert\Exceptions\WebPConvertException;
6
7/**
8 *  ConversionFailedException is the base exception in the hierarchy for conversion errors.
9 *
10 *  Exception hierarchy from here:
11 *
12 *  WebpConvertException
13 *      ConversionFailedException
14 *          ConversionSkippedException
15 *          ConverterNotOperationalException
16 *              InvalidApiKeyException
17 *              SystemRequirementsNotMetException
18 *          FileSystemProblemsException
19 *              CreateDestinationFileException
20 *              CreateDestinationFolderException
21 *          InvalidInputException
22 *              ConverterNotFoundException
23 *              InvalidImageTypeException
24 *              InvalidOptionValueException
25 *              TargetNotFoundException
26 */
27class ConversionFailedException extends WebPConvertException
28{
29    //public $description = 'Conversion failed';
30    public $description = '';
31}