Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class VCardException extends \Exception |
||
9 | { |
||
10 | public static function elementExists($element) |
||
11 | { |
||
12 | return new self($element . '" not is multiple.'); |
||
13 | } |
||
14 | |||
15 | public static function emptyURL() |
||
16 | { |
||
17 | return new self('Verify URL.'); |
||
18 | } |
||
19 | |||
20 | public static function invalidImage() |
||
21 | { |
||
22 | return new self('Data is not an valid image.'); |
||
23 | } |
||
24 | |||
25 | public static function outputDirectoryNotExists() |
||
28 | } |
||
29 | } |
||
30 |