HtmlBuilder classes

This commit is contained in:
Clemens Schwaighofer
2023-06-28 15:33:12 +09:00
parent 0b1df7a901
commit edcc77a6ab
10 changed files with 1880 additions and 1 deletions
@@ -0,0 +1,21 @@
<?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__