forms/exceptions/FieldTypeNotFound.php

13 lines
216 B
PHP
Raw Permalink Normal View History

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