forked from spipu/html2pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImageException.php
More file actions
55 lines (49 loc) · 895 Bytes
/
Copy pathImageException.php
File metadata and controls
55 lines (49 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* Html2Pdf Library - Exception class
*
* HTML => PDF converter
* distributed under the OSL-3.0 License
*
* @package Html2pdf
* @author Laurent MINGUET <webmaster@html2pdf.fr>
* @copyright 2017 Laurent MINGUET
*/
namespace Spipu\Html2Pdf\Exception;
/**
* Image Exception
*/
class ImageException extends Html2PdfException
{
/**
* ERROR CODE 2
* @var int
*/
const ERROR_CODE = 2;
/**
* asked unknown image
* @var string
*/
protected $image;
/**
* set the image in error
*
* @param string $value the value
*
* @return ImageException
*/
public function setImage($value)
{
$this->image = $value;
return $this;
}
/**
* get the image in error
*
* @return string
*/
public function getImage()
{
return $this->image;
}
}