vendor/spipu/html2pdf/src/Exception/ImageException.php line 18

Open in your IDE?
  1. <?php
  2. /**
  3.  * Html2Pdf Library - Exception class
  4.  *
  5.  * HTML => PDF converter
  6.  * distributed under the OSL-3.0 License
  7.  *
  8.  * @package   Html2pdf
  9.  * @author    Laurent MINGUET <webmaster@html2pdf.fr>
  10.  * @copyright 2023 Laurent MINGUET
  11.  */
  12. namespace Spipu\Html2Pdf\Exception;
  13. /**
  14.  * Image Exception
  15.  */
  16. class ImageException extends Html2PdfException
  17. {
  18.     /**
  19.      * ERROR CODE 2
  20.      * @var int
  21.      */
  22.     const ERROR_CODE 2;
  23.     /**
  24.      * asked unknown image
  25.      * @var string
  26.      */
  27.     protected $image;
  28.     /**
  29.      * set the image in error
  30.      *
  31.      * @param string $value the value
  32.      *
  33.      * @return ImageException
  34.      */
  35.     public function setImage($value)
  36.     {
  37.         $this->image $value;
  38.         return $this;
  39.     }
  40.     /**
  41.      * get the image in error
  42.      *
  43.      * @return string
  44.      */
  45.     public function getImage()
  46.     {
  47.         return $this->image;
  48.     }
  49. }