• File: ImageException.php
  • Full Path: /var/www/imaliapi/vendor/dompdf/dompdf/src/Exception/ImageException.php
  • Date Modified: 01/15/2025 9:09 PM
  • File size: 571 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * @package dompdf
 * @link    https://github.com/dompdf/dompdf
 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
 */
namespace Dompdf\Exception;

use Dompdf\Exception;

/**
 * Image exception thrown by DOMPDF
 *
 * @package dompdf
 */
class ImageException extends Exception
{

    /**
     * Class constructor
     *
     * @param string $message Error message
     * @param int $code       Error code
     */
    function __construct($message = null, $code = 0)
    {
        parent::__construct($message, $code);
    }

}