assure/vendor/spipu/html2pdf/src/Exception/TableException.php
2025-12-05 09:34:39 +00:00

26 lines
430 B
PHP
Executable File

<?php
/**
* Html2Pdf Library - Exception class
*
* HTML => PDF converter
* distributed under the OSL-3.0 License
*
* @package Html2pdf
* @author Laurent MINGUET <webmaster@html2pdf.fr>
* @copyright 2025 Laurent MINGUET
*/
namespace Spipu\Html2Pdf\Exception;
/**
* Table Exception
*/
class TableException extends Html2PdfException
{
/**
* ERROR CODE 4
* @var int
*/
const ERROR_CODE = 4;
}