Files
CoreLibs-Composer-All/src/Template/HtmlBuilder/General/HtmlBuilderExcpetion.php

22 lines
311 B
PHP
Raw Normal View History

2023-06-28 15:33:12 +09:00
<?php
/**
* AUTOR: Clemens Schwaighofer
* CREATED: 2023/6/28
* DESCRIPTION:
* Exception class for the HtmlBuilder blocks
*/
declare(strict_types=1);
namespace CoreLibs\Template\HtmlBuilder\General;
/**
* Exception class for HtmlBuilder
*/
class HtmlBuilderExcpetion extends \Exception
{
}
// __END__