Initial commit

This commit is contained in:
2022-11-21 09:47:28 +01:00
commit 76cec83d26
11652 changed files with 1980467 additions and 0 deletions

View File

@ -0,0 +1,37 @@
<?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;
/**
* Html2Pdf Exception
*/
class Html2PdfException extends \Exception
{
/**
* ERROR CODE 0
* @var int
*/
const ERROR_CODE = 0;
/**
* Construct the exception.
*
* @param string $message The Exception message to throw.
*
* @return Html2PdfException
*/
public function __construct($message)
{
parent::__construct($message, static::ERROR_CODE);
}
}