# mail-boxes-etc/trunk/lib/dompdf/src/Exception/ImageException.php

MBE eShip, version trunk. 31 lines.

- Page: https://pluginprobe.com/plugins/mail-boxes-etc/trunk/code/lib/dompdf/src/Exception/ImageException.php
- Raw: https://pluginprobe.com/plugins/mail-boxes-etc/trunk/raw/lib/dompdf/src/Exception/ImageException.php
- Modified: 2023-02-01T08:24:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mail-boxes-etc/trunk/code/lib/dompdf/src/Exception/ImageException.php#L10-L20`.

```php
<?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);
    }

}

```
