forms/exceptions/FieldTypeNotFound.php
2024-05-28 17:10:06 +03:00

13 lines
216 B
PHP

<?php
namespace itguild\forms\form\exceptions;
class FieldTypeNotFound extends \Exception
{
function __construct(string $type)
{
$this->message = "Тип поля $type не найден";
}
}